結果

問題 No.3064 Speedrun (Easy)
ユーザー GOTKAKO
提出日時 2025-03-21 21:20:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 192,440 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-21 21:20:47
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int a,b,c,d; cin >> a >> b >> c >> d;
    int p,q,r,s; cin >> p >> q >> r >> s;
    int t; cin >> t;
    if(q*p+b*q+c*r+d*s <= t) cout << "Yes\n";
    else cout << "No\n";
}
0