結果

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

ソースコード

diff #

def readlist():
    return list(map(int, input().split()))


def readint():
    return map(int, input().split())


a, b, c, d = readint()
p, q, r, s, t = readint()
total_time = a * p + b * q + c * r + d * s
print("Yes" if total_time <= t else "No")
0