Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2058 | 张宸瑜 | 11下一次奥运会 | C++ | Wrong Answer | 0 MS | 260 KB | 208 | 2023-12-09 16:40:32 |
# include<iostream> # include<cstdio> # include<iomanip> using namespace std; int main(){ int a,b; cin>>a; b=a%4; if(b==0) cout<<"4"; else cout<<b; return 0; }
------Input------
4305
------Answer-----
3
------Your output-----
1