| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77715 | sh25_shengmy | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 248 KB | 193 | 2025-12-26 14:42:25 |
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a>=10||b>=20){ cout<<1; } else{ cout<<0; } return 0; }