Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5705 C班-黎耀谦 储水问题 C++ 通过 100 1 MS 268 KB 196 2025-02-15 16:04:05

Tests(5/5):


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


测评信息: