結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    int a,b,c,d,e,f,g,h,i;
    cin>>a>>b>>c>>d>>e>>f>>g>>h>>i;
    cout<<(i >= a*e+b*f+g*c+d*h ? "Yes" : "No")<<endl;
}
0