acgo题库
  • 首页
  • 题库
  • 题单
  • 竞赛
  • 讨论
  • 排行
  • 团队
  • 备赛专区

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(0)
  • 题解

    #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ int x; cin>>x; if(x>0&&x<10){ cout<<"YES"<<"\n"; } else{ int s=x; while(s!=0){ s/=10; if(s/100){ break; } } if(sx%10){ cout<<"YES"<<endl; } else{ cout<<"NO"<<endl; } } } return 0; }

    userId_undefined

    ༺ཌༀ☯✿爸爸✿™☯ༀད༻

    出道萌新I/O·IO入门者倔强青铜
    9阅读
    0回复
    2点赞
  • 题解

    userId_undefined

    zsy

    7月全勤卷王题解仙人出道萌新时间刺客时空双修者秩序白银
    17阅读
    0回复
    0点赞
  • tj

    #include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ int x; cin>>x; if(x>0&&x<10){ cout<<"YES"<<"\n"; }else{ int s=x; while(s!=0){ s/=10; if(s/100){ break; } } if(sx%10){ cout<<"YES"<<endl; }else{ cout<<"NO"<<"\n"; } } } return 0; }

    userId_undefined

    AAA秋褲批發lexora_哥

    小有名气题解仙人时空双修者秩序白银传道者
    6阅读
    0回复
    1点赞
  • 第一条py题解答案

    userId_undefined

    无敌的鳖佬仔给老爷爷猜猜被

    7月全勤卷王时间刺客空间掌握者循环·循环打卡人荣耀黄金I/O·IO入门者
    15阅读
    0回复
    0点赞
  • 第一条C题解答案

    #include<bits/stdc++.h> using namespace std; int main(){ int n; int a[10005]; cin>>n; string x; for(int i=0;i<n;i++){ cin>>x; if(x[0]==x[x.length()-1]) a[i]=0; else a[i]=1; } for(int i=0;i<n;i++){ if(a[i]==0) cout<<"YES"<<endl; else cout<<"NO"<<endl; } return 0; }

    userId_undefined

    不是不笑,只是时候未到

    出道萌新倔强青铜
    7阅读
    0回复
    0点赞
首页