| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150813 | 邓弘锐 | 12序列找规律 | C++ | Wrong Answer | 1 MS | 268 KB | 186 | 2026-03-31 19:18:30 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,a=10000,b=10000; cin>>n; if(n%2==0){ cout<<b-n-2; } else{ cout<<a-n/2; } return 0; }
------Input------
12
------Answer-----
9990
------Your output-----
9986