結果
| 問題 | No.3064 Speedrun (Easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-05 09:45:38 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 65 ms / 2,000 ms |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 312 ms |
| コンパイル使用メモリ | 95,720 KB |
| 実行使用メモリ | 78,592 KB |
| 最終ジャッジ日時 | 2026-07-08 11:46:02 |
| 合計ジャッジ時間 | 2,469 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
a,b,c,d=map(int,input().split())
p,q,r,s,t=map(int,input().split())
x=a*p+b*q+c*r+d*s
if x<=t:
print('Yes')
else:
print('No')