Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5316 A班-高思婕 储水问题 C++ 通过 100 1 MS 264 KB 226 2025-02-03 17:37:18

Tests(5/5):


#include <bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; int n = a*b*c; int m = d * 1000; if(n >= m) { cout<<"Yes"<<endl; } else { cout<<"No"<<endl; } return 0; }


测评信息: