| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146092 | c13 | 收集瓶盖赢大奖 | C++ | Accepted | 3 MS | 272 KB | 239 | 2026-01-25 20:51:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a,b; while(n--){ cin>>a>>b; if(a>=10||b>=20)cout<<"True"<<endl; else cout<<"False"<<endl; } return 0; }