| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5101 | 陈颖钧 | 储水问题 | C++ | Accepted | 100 | 0 MS | 260 KB | 198 | 2025-01-21 11:10:24 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a>>b>>c>>d; e=a*b*c/1000; if(e>=d){ cout<<"Yes"; }else{ cout<<"No"; } }