結果

問題 No.2922 Rose Garden
ユーザー 寝癖寝癖
提出日時 2024-10-12 15:27:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 3,000 ms
コード長 408 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 107,836 KB
最終ジャッジ日時 2024-10-12 15:27:12
合計ジャッジ時間 5,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
88,480 KB
testcase_01 AC 61 ms
78,420 KB
testcase_02 AC 66 ms
88,136 KB
testcase_03 AC 90 ms
107,420 KB
testcase_04 AC 66 ms
88,008 KB
testcase_05 AC 63 ms
84,616 KB
testcase_06 AC 55 ms
77,004 KB
testcase_07 AC 82 ms
99,544 KB
testcase_08 AC 47 ms
69,736 KB
testcase_09 AC 80 ms
103,936 KB
testcase_10 AC 49 ms
73,528 KB
testcase_11 AC 46 ms
68,716 KB
testcase_12 AC 62 ms
87,444 KB
testcase_13 AC 72 ms
96,128 KB
testcase_14 AC 43 ms
66,384 KB
testcase_15 AC 64 ms
86,072 KB
testcase_16 AC 70 ms
94,804 KB
testcase_17 AC 86 ms
104,204 KB
testcase_18 AC 43 ms
63,240 KB
testcase_19 AC 59 ms
80,932 KB
testcase_20 AC 68 ms
92,368 KB
testcase_21 AC 83 ms
104,284 KB
testcase_22 AC 61 ms
85,292 KB
testcase_23 AC 85 ms
99,260 KB
testcase_24 AC 45 ms
67,644 KB
testcase_25 AC 60 ms
82,648 KB
testcase_26 AC 70 ms
92,668 KB
testcase_27 AC 73 ms
96,568 KB
testcase_28 AC 68 ms
91,956 KB
testcase_29 AC 66 ms
87,756 KB
testcase_30 AC 40 ms
62,624 KB
testcase_31 AC 38 ms
60,240 KB
testcase_32 AC 40 ms
60,916 KB
testcase_33 AC 37 ms
60,008 KB
testcase_34 AC 43 ms
62,036 KB
testcase_35 AC 43 ms
60,572 KB
testcase_36 AC 40 ms
64,008 KB
testcase_37 AC 40 ms
64,408 KB
testcase_38 AC 39 ms
62,120 KB
testcase_39 AC 41 ms
63,312 KB
testcase_40 AC 65 ms
89,860 KB
testcase_41 AC 59 ms
74,640 KB
testcase_42 AC 86 ms
107,836 KB
testcase_43 AC 60 ms
79,760 KB
testcase_44 AC 86 ms
104,172 KB
testcase_45 AC 47 ms
68,836 KB
testcase_46 AC 89 ms
107,528 KB
testcase_47 AC 69 ms
92,500 KB
testcase_48 AC 47 ms
69,104 KB
testcase_49 AC 81 ms
101,328 KB
testcase_50 AC 37 ms
52,780 KB
testcase_51 AC 35 ms
52,860 KB
testcase_52 AC 34 ms
52,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S, B = map(int, input().split())
H = list(map(int, input().split()))

now = 0
Y = H[0]

while now < N-1:
    Y += S * B
    mx, mx_i = -1, -1
    x = now
    while x+1 < N and H[x+1] <= Y:
        if H[x+1] > mx:
            mx = H[x+1]
            mx_i = x+1
        x += 1
    if mx == -1:
        print("No")
        exit()
    if x == N-1:
        print("Yes")
        exit()
    Y = mx
    now = mx_i
0