Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
3498 | OscarWLY | 晶晶赴约会 | C++ | Accepted | 0 MS | 252 KB | 156 | 2023-01-08 16:14:04 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n!=1&&n!=3&&n!=5) cout<<"YES"; else cout<<"NO"; return 0; }