| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128821 | 周民苡 | 11下一次奥运会 | C++ | Wrong Answer | 1 MS | 268 KB | 146 | 2025-08-20 11:15:26 |
#include<bits/stdc++.h> using namespace std; int main() { int y; cin>>y; int n=y%4; if(y%4==0){ n=4; } cout<<n; return 0; }
------Input------
6045
------Answer-----
3
------Your output-----
1