1 条题解

  • 1
    @ 2025-7-25 9:36:21

    #include <bits/stdc++.h> using namespace std ; int main () { int n; cin >> n; if(n / 100 ==0 && n / 10 != 0) { cout << 1; } else { cout << 0; } return 0 ; }

    信息

    ID
    136
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    34
    已通过
    16
    上传者