Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
31568 | 闻航 | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 240 KB | 194 | 2023-11-19 16:55:31 |
#include<iostream> using namespace std; int main() { int x,y,n; cin>>x>>y; n=10*x||20*y; if(x>=10){ cout<<1; }else if(y>=20){ cout<<1; }else{ cout<<0; } }