Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
5299 | C班-王硕 | 储水问题 | C++ | Accepted | 100 | 1 MS | 264 KB | 201 | 2025-02-01 11:06:13 |
#include <iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(a*b*c/1000 >= d){ cout<<"Yes"<<endl; } if(a*b*c/1000 < d){ cout<<"No"<<endl; } return 0 ; }