Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150011 黄俊仪 11下一次奥运会 C++ Accepted 1 MS 268 KB 266 2026-03-21 16:09:31

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int k; cin>>k; if(k%4==0){ cout<<4; return 0; } if(k%4==1){ cout<<3; return 0; } if(k%4==2){ cout<<2; return 0; } if(k%4==3){ cout<<1; return 0; } return 0; }