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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(0)
  • 如何达到最快或空间最小?

    我的最基础的代码 #include<iostream> using namespacemespace std; int main (){ int n; cin>>n; if(n>=100&&n<=9)cout<<0; else cout<<1; }

    userId_undefined

    Pai

    倔强青铜
    90阅读
    22回复
    1点赞
  • 答案

    #include<iostream> using namespace std; int main(){ int a; cin >> a; if (a>=10 and a<99) cout << "1"; else cout << "0"; }

    userId_undefined

    屑小M

    倔强青铜
    16阅读
    1回复
    0点赞
  • omg

    这么简单的还有人不会

    userId_undefined

    WA四十AC八十——八十!八十!

    倔强青铜
    17阅读
    0回复
    0点赞
首页