1 条题解

  • 0
    @ 2025-3-10 21:59:19
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
        int n,m;
        cin >> n >> m;
        if (n >= 10 || m >= 20) {
            cout << 1;
        }
        else {
            cout << 0;
        }
        return 0;
    }
    
    • 1

    信息

    ID
    57
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    16
    已通过
    13
    上传者