| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 20793 | LeoWang | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 252 KB | 233 | 2023-06-20 08:46:58 |
#include<iostream> using namespace std; int main(){ int goodluck; int encouragement; cin >> goodluck >> encouragement; if (goodluck>=10 || encouragement>=20){ cout << "1"; } else { cout << "0"; } return 0; }