Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5256 | A班-过懿萱 | 储水问题 | C++ | 通过 | 100 | 1 MS | 260 KB | 249 | 2025-01-25 12:08:30 |
#include <bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; int temp = d * 1000; int f = a * b * c; if(f >= temp) { cout<<"Yes"<<endl; } else if(f < temp) { cout<<"No"<<endl; } return 0; }