| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46185 | zhangyanshuo | 晶晶赴约会 | C++ | Accepted | 0 MS | 244 KB | 199 | 2024-04-26 21:21:22 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if((a==1||a==3||a==5)) { cout<<"NO"; return 0; } else { cout<<"YES"; return 0; } return 0; }