| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88565 | sh25_sunyuanxi | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 236 KB | 180 | 2026-05-15 14:55:45 |
#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; }return 0; }