Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97133 | 潘梓骞 | 收集瓶盖赢大奖 | C++ | Accepted | 4 MS | 272 KB | 238 | 2024-11-10 13:32:07 |
#include<bits/stdc++.h> using namespace std; int a, b, n; int main() { cin >> n; for (int i = 0; i < n; i++) { cin >> a >> b; if (a >= 10 || b >= 20) cout << "True" << endl; else cout << "False" << endl; } return 0; }