Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
65957 李雨昊 2020 C++ Accepted 0 MS 264 KB 188 2024-02-24 13:03:15

Tests(3/3):


Code:

#include<iostream> #include<cstdio> using namespace std; int main() { int a; cin>>a; if ((a-2020)%101==0){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }