Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99665 | 黄思翔 | 2020 | C++ | Wrong Answer | 0 MS | 272 KB | 164 | 2024-11-30 12:37:58 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=0,b=a/10; cin>>a; if(b%101==0){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }
------Input------
2000
------Answer-----
NO
------Your output-----
YES