| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 336126 | admin_rjp | 【C1-8】兑换奖品 | C++ | Accepted | 100 | 1 MS | 252 KB | 205 | 2025-07-25 16:39:52 |
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; if(n>=15&&m>=10||n>=25||m>=30){ cout<<"YES"<<endl; } else{ cout<<"NO"<<endl; } return 0; }