結果
| 問題 |
No.512 魔法少女の追いかけっこ
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-05-05 23:07:24 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 328 bytes |
| コンパイル時間 | 125 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-27 06:12:16 |
| 合計ジャッジ時間 | 2,899 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 WA * 22 |
ソースコード
# your code goes here
X=[float(i) for i in input().split()]
N=int(input())
A=[int(i) for i in input().split()]
for i in range(2):
# X[i]=X[i]*18/5
X[i]=X[i]*18
i= 1
e=0
while e==0 and i<N:
# T=A[i]/X[1]
T=A[i]*5/X[1]
K=X[0]*T
if K<A[i-1]:
e=1
print("NO")
i+=1
if e==0:
print("YES")
rocoder