| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 70305 | sh25_wangtaojie | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 240 KB | 200 | 2025-10-17 15:21:42 |
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>=10||b>=20) { cout<<"1"; } else { cout<<"0"; } return 0; }