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