| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 131150 | 张文浩 | 09能否赴约 | C++ | Accepted | 2 MS | 272 KB | 380 | 2025-09-21 11:21:15 |
#include <bits/stdc++.h> using namespace std; int main() { /** int y,m; cin>>y>>m; if(m==2){ if(y%400==0||(y%100!=0 and y %4==0)){ cout<<29; }else{ cout<<28; } }else if(m==4||m==6||m==9||m==11){ cout<<30; }else{ cout<<31; }**/ int a; cin>>a; if(a%2==0){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }