| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 126379 | 袁梓豪 | 拉线开关 | C++ | Wrong Answer | 1 MS | 268 KB | 156 | 2025-07-18 15:47:48 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a%2==1){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }
------Input------
101
------Answer-----
1
------Your output-----
YES