結果

問題 No.3064 Speedrun (Easy)
ユーザー Facade
提出日時 2025-03-21 21:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,304 KB
最終ジャッジ日時 2025-03-21 21:22:11
合計ジャッジ時間 1,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

score=list(map(int,input().split()))
lst=list(map(int,input().split()))
time=0
for i in range(4):
    time+=score[i]*lst[i]
if time<=lst[-1]:
    print("Yes")
else:
    print("No")
0