Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5459 D班-罗炜翰 储水问题 C++ 通过 100 1 MS 260 KB 204 2025-02-09 15:43:56

Tests(5/5):


#include<iostream> using namespace std; int main() { int a,b,c,d,v; cin>>a>>b>>c>>d; v = a * b * c; d *= 1000; if (v >= d) { cout<<"Yes"; } else { cout<<"No"; } return 0; }


测评信息: