Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
317 | 关清声 | 剪绳子 | C++ | Wrong Answer | 0 MS | 264 KB | 121 | 2022-08-07 17:23:34 |
#include<iostream> #include<cmath> using namespace std; int main() { int n; cin>>n; cout<<2*n+1; return 0; }
------Input------
0
------Answer-----
2
------Your output-----
1