結果

問題 No.3065 Speedrun (Normal)
ユーザー ra5anchor
提出日時 2025-03-21 23:07:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2025-03-21 23:08:01
合計ジャッジ時間 1,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C, D = map(int, input().split())
P, Q, R, S, T = map(int, input().split())
if A*P+B*Q+C*R+D*S <= T:
    print('Yes')
else:
    print('No')
0