Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5660 | 翟** | 12序列找规律 | C++ | Wrong Answer | 0 MS | 256 KB | 199 | 2024-12-08 10:12:04 |
#include<iostream> using namespace std; int main(){ int n,a=10000,b=10000; cin>>n; for(int i=2;i<=n/2;i++){ a--; } if(n%2==1) a--; cout<<a; return 0; }
------Input------
16
------Answer-----
9986
------Your output-----
9993