| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76663 | sh25_zhuhy | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 244 KB | 183 | 2025-12-19 15:42:55 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; if(n>10||m>20) { cout<<1<<endl; } else { cout<<0; } }