結果

問題 No.512 魔法少女の追いかけっこ
ユーザー lloyzlloyz
提出日時 2022-11-05 01:34:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-18 22:59:36
合計ジャッジ時間 4,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 39 ms
52,140 KB
testcase_02 WA -
testcase_03 AC 39 ms
52,776 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,244 KB
testcase_06 AC 38 ms
53,220 KB
testcase_07 AC 39 ms
53,244 KB
testcase_08 AC 39 ms
52,272 KB
testcase_09 WA -
testcase_10 AC 40 ms
52,320 KB
testcase_11 AC 39 ms
52,864 KB
testcase_12 AC 39 ms
51,944 KB
testcase_13 AC 39 ms
53,260 KB
testcase_14 AC 39 ms
52,920 KB
testcase_15 AC 39 ms
52,652 KB
testcase_16 AC 38 ms
53,008 KB
testcase_17 AC 39 ms
52,072 KB
testcase_18 AC 39 ms
53,044 KB
testcase_19 AC 39 ms
53,688 KB
testcase_20 AC 37 ms
52,580 KB
testcase_21 AC 38 ms
52,680 KB
testcase_22 AC 39 ms
52,896 KB
testcase_23 AC 38 ms
52,844 KB
testcase_24 WA -
testcase_25 AC 39 ms
52,552 KB
testcase_26 AC 38 ms
52,376 KB
testcase_27 AC 38 ms
52,780 KB
testcase_28 AC 38 ms
52,880 KB
testcase_29 AC 39 ms
52,076 KB
testcase_30 AC 39 ms
52,444 KB
testcase_31 AC 39 ms
52,132 KB
testcase_32 AC 39 ms
52,216 KB
testcase_33 AC 39 ms
52,820 KB
testcase_34 AC 39 ms
52,864 KB
testcase_35 AC 40 ms
52,068 KB
testcase_36 AC 38 ms
52,396 KB
testcase_37 AC 38 ms
53,036 KB
testcase_38 AC 39 ms
52,208 KB
testcase_39 AC 38 ms
52,776 KB
testcase_40 AC 39 ms
53,436 KB
testcase_41 AC 37 ms
53,284 KB
testcase_42 AC 37 ms
52,744 KB
testcase_43 AC 39 ms
52,860 KB
testcase_44 AC 38 ms
52,556 KB
testcase_45 AC 38 ms
53,444 KB
testcase_46 AC 39 ms
52,140 KB
testcase_47 WA -
testcase_48 AC 39 ms
51,872 KB
testcase_49 AC 38 ms
52,400 KB
testcase_50 AC 39 ms
52,404 KB
testcase_51 AC 39 ms
52,156 KB
testcase_52 AC 38 ms
53,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

x, y = map(int, input().split())
n = int(input())
A = list(map(int, input().split()))

for i in range(n):
    t = A[i] / x
    d = t * y
    idx = bisect_left(A, d)
    if idx - i > 1:
        print("NO")
        exit()
print("YES")
0