結果

問題 No.512 魔法少女の追いかけっこ
ユーザー pypypymipypypymi
提出日時 2022-02-17 20:23:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-06-29 07:48:56
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,400 KB
testcase_01 AC 35 ms
52,692 KB
testcase_02 AC 38 ms
53,032 KB
testcase_03 AC 38 ms
52,644 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
52,696 KB
testcase_07 AC 33 ms
53,232 KB
testcase_08 AC 32 ms
53,572 KB
testcase_09 WA -
testcase_10 AC 33 ms
52,612 KB
testcase_11 AC 37 ms
52,444 KB
testcase_12 AC 37 ms
52,092 KB
testcase_13 AC 35 ms
52,684 KB
testcase_14 AC 35 ms
52,632 KB
testcase_15 AC 34 ms
52,132 KB
testcase_16 AC 35 ms
52,820 KB
testcase_17 AC 33 ms
52,756 KB
testcase_18 AC 33 ms
51,828 KB
testcase_19 WA -
testcase_20 AC 34 ms
52,644 KB
testcase_21 AC 32 ms
53,576 KB
testcase_22 AC 33 ms
52,736 KB
testcase_23 AC 34 ms
52,400 KB
testcase_24 AC 35 ms
52,708 KB
testcase_25 AC 33 ms
52,224 KB
testcase_26 AC 33 ms
52,288 KB
testcase_27 AC 33 ms
52,156 KB
testcase_28 AC 34 ms
52,580 KB
testcase_29 AC 35 ms
52,204 KB
testcase_30 AC 35 ms
53,488 KB
testcase_31 AC 35 ms
53,064 KB
testcase_32 AC 35 ms
53,820 KB
testcase_33 AC 36 ms
52,212 KB
testcase_34 AC 35 ms
52,556 KB
testcase_35 AC 34 ms
52,152 KB
testcase_36 AC 34 ms
54,180 KB
testcase_37 AC 37 ms
52,644 KB
testcase_38 AC 36 ms
52,000 KB
testcase_39 AC 38 ms
52,296 KB
testcase_40 AC 38 ms
52,568 KB
testcase_41 AC 34 ms
52,636 KB
testcase_42 AC 32 ms
52,628 KB
testcase_43 AC 33 ms
52,880 KB
testcase_44 AC 33 ms
53,152 KB
testcase_45 AC 33 ms
52,316 KB
testcase_46 AC 34 ms
52,252 KB
testcase_47 WA -
testcase_48 AC 34 ms
52,420 KB
testcase_49 AC 34 ms
53,044 KB
testcase_50 AC 39 ms
53,436 KB
testcase_51 WA -
testcase_52 AC 35 ms
51,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y = map(int,input().split())
x = (x*1000)/3600
y = (y*1000)/3600
n = int(input())
an = list(map(int,input().split()))
for i in range(len(an)-1):
    x_time = an[i]/x
    y_dis = x_time*y
    
    if y_dis>an[i+1]:
        print("NO")
        exit()
print("YES")
0