結果

問題 No.2922 Rose Garden
ユーザー CecilCecil
提出日時 2024-10-13 22:43:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 3,000 ms
コード長 342 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-10-13 22:43:52
合計ジャッジ時間 6,066 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
87,424 KB
testcase_01 AC 67 ms
76,928 KB
testcase_02 AC 83 ms
87,168 KB
testcase_03 AC 111 ms
107,648 KB
testcase_04 AC 79 ms
87,680 KB
testcase_05 AC 76 ms
83,712 KB
testcase_06 AC 67 ms
75,136 KB
testcase_07 AC 88 ms
98,304 KB
testcase_08 AC 60 ms
68,096 KB
testcase_09 AC 98 ms
103,936 KB
testcase_10 AC 58 ms
72,192 KB
testcase_11 AC 53 ms
67,200 KB
testcase_12 AC 73 ms
86,784 KB
testcase_13 AC 93 ms
95,744 KB
testcase_14 AC 54 ms
66,688 KB
testcase_15 AC 100 ms
84,864 KB
testcase_16 AC 80 ms
93,184 KB
testcase_17 AC 104 ms
104,320 KB
testcase_18 AC 52 ms
62,976 KB
testcase_19 AC 74 ms
79,616 KB
testcase_20 AC 76 ms
90,112 KB
testcase_21 AC 108 ms
104,064 KB
testcase_22 AC 75 ms
85,120 KB
testcase_23 AC 88 ms
98,944 KB
testcase_24 AC 54 ms
66,176 KB
testcase_25 AC 75 ms
82,432 KB
testcase_26 AC 100 ms
91,008 KB
testcase_27 AC 104 ms
95,744 KB
testcase_28 AC 80 ms
91,008 KB
testcase_29 AC 90 ms
87,168 KB
testcase_30 AC 45 ms
60,800 KB
testcase_31 AC 42 ms
59,008 KB
testcase_32 AC 43 ms
59,392 KB
testcase_33 AC 43 ms
58,368 KB
testcase_34 AC 45 ms
61,184 KB
testcase_35 AC 46 ms
59,264 KB
testcase_36 AC 46 ms
62,080 KB
testcase_37 AC 48 ms
62,976 KB
testcase_38 AC 45 ms
59,904 KB
testcase_39 AC 47 ms
61,824 KB
testcase_40 AC 79 ms
89,728 KB
testcase_41 AC 60 ms
72,576 KB
testcase_42 AC 101 ms
107,264 KB
testcase_43 AC 68 ms
79,744 KB
testcase_44 AC 101 ms
104,320 KB
testcase_45 AC 56 ms
68,480 KB
testcase_46 AC 98 ms
107,136 KB
testcase_47 AC 80 ms
91,264 KB
testcase_48 AC 58 ms
67,456 KB
testcase_49 AC 92 ms
100,736 KB
testcase_50 AC 37 ms
51,840 KB
testcase_51 AC 36 ms
51,456 KB
testcase_52 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B = map(int, input().split())
H = list(map(int,input().split()))
now = H[0]
s = S
for i in range(N-1):
    if now < H[i+1]:
        while now<H[i+1] and s>0:
            s -= 1
            now += B
        if now<H[i+1]:
            print("No")
            exit()
        now = H[i+1]
        s = S
    else:
        continue
print("Yes")
0