Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115478 任紫谦 11下一次奥运会 C++ Accepted 1 MS 268 KB 176 2025-03-30 16:03:24

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int y,x; cin>>y; if(y%4==0){ cout<<4; }else{ x=4-y%4; cout<<x; } }