結果
問題 |
No.3065 Speedrun (Normal)
|
ユーザー |
![]() |
提出日時 | 2025-03-24 23:11:52 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 285 bytes |
コンパイル時間 | 644 ms |
コンパイル使用メモリ | 69,504 KB |
実行使用メモリ | 7,328 KB |
最終ジャッジ日時 | 2025-03-24 23:11:54 |
合計ジャッジ時間 | 1,742 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 13 |
ソースコード
#include<iostream> #include<vector> using namespace std; int main() { long long a,b,c,d,p,q,r,s,t; cin >> a >> b >> c >> d >> p >> q >> r >> s >> t; long long cnt=0; cnt+=a*p; cnt+=b*q; cnt+=r*c; cnt+=d*s; if(cnt<=t)cout << "Yes" << endl; else cout << "No" << endl; }