Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
29544 | lnx | 晶晶赴约会 | C++ | Accepted | 0 MS | 244 KB | 166 | 2023-10-31 18:45:29 |
#include<iostream> using namespace std; int main() { int n; cin>>n; if(n==1&&n==3&&n==5) { cout<<"NO"; } else { cout<<"YES"; } return 0; }