| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156505 | 熊泊彧 | 09能否赴约 | C++ | Wrong Answer | 1 MS | 268 KB | 229 | 2026-06-28 14:56:39 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; switch(a) { case 1:cout<<"NO";break; case 3:cout<<"NO";break; case 5:cout<<"NO";break; defanlt:cout<<"YES"; } return 0; }
------Input------
4
------Answer-----
YES
------Your output-----