Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129046 李馥甄 11下一次奥运会 C++ Accepted 2 MS 272 KB 147 2025-08-21 16:23:08

Tests(10/10):


Code:

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