結果

問題 No.2922 Rose Garden
ユーザー miya145592miya145592
提出日時 2024-10-12 14:51:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 3,000 ms
コード長 386 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-10-12 14:51:34
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
86,272 KB
testcase_01 AC 64 ms
75,776 KB
testcase_02 AC 68 ms
85,888 KB
testcase_03 AC 89 ms
106,240 KB
testcase_04 AC 67 ms
85,656 KB
testcase_05 AC 64 ms
81,920 KB
testcase_06 AC 58 ms
74,496 KB
testcase_07 AC 79 ms
96,640 KB
testcase_08 AC 58 ms
67,328 KB
testcase_09 AC 81 ms
99,968 KB
testcase_10 AC 56 ms
71,680 KB
testcase_11 AC 51 ms
66,304 KB
testcase_12 AC 68 ms
85,632 KB
testcase_13 AC 75 ms
92,928 KB
testcase_14 AC 48 ms
65,920 KB
testcase_15 AC 66 ms
82,816 KB
testcase_16 AC 74 ms
91,904 KB
testcase_17 AC 89 ms
102,228 KB
testcase_18 AC 47 ms
63,804 KB
testcase_19 AC 63 ms
80,304 KB
testcase_20 AC 72 ms
89,236 KB
testcase_21 AC 83 ms
101,044 KB
testcase_22 AC 64 ms
82,900 KB
testcase_23 AC 82 ms
97,508 KB
testcase_24 AC 50 ms
66,204 KB
testcase_25 AC 64 ms
81,092 KB
testcase_26 AC 72 ms
91,092 KB
testcase_27 AC 79 ms
95,216 KB
testcase_28 AC 73 ms
89,512 KB
testcase_29 AC 69 ms
86,580 KB
testcase_30 AC 44 ms
61,900 KB
testcase_31 AC 43 ms
59,892 KB
testcase_32 AC 43 ms
59,924 KB
testcase_33 AC 43 ms
59,140 KB
testcase_34 AC 44 ms
62,092 KB
testcase_35 AC 44 ms
60,684 KB
testcase_36 AC 44 ms
63,784 KB
testcase_37 AC 48 ms
63,880 KB
testcase_38 AC 44 ms
60,600 KB
testcase_39 AC 45 ms
62,916 KB
testcase_40 AC 71 ms
89,328 KB
testcase_41 AC 57 ms
73,580 KB
testcase_42 AC 95 ms
105,880 KB
testcase_43 AC 63 ms
79,552 KB
testcase_44 AC 88 ms
102,480 KB
testcase_45 AC 52 ms
69,204 KB
testcase_46 AC 91 ms
105,660 KB
testcase_47 AC 71 ms
90,256 KB
testcase_48 AC 50 ms
66,292 KB
testcase_49 AC 83 ms
97,468 KB
testcase_50 AC 39 ms
52,000 KB
testcase_51 AC 39 ms
52,280 KB
testcase_52 AC 39 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, S, B = map(int, input().split())
H = list(map(int, input().split()))
now_s = S
now_h = H[0]
for i in range(N-1):
    if now_s>0:
        now_h += now_s*B
        now_s = 0
    if H[i]+S*B>now_h:
        now_h = H[i]
        now_s = S
        now_h += now_s*B
        now_s = 0
    if now_h<H[i+1]:
        print("No")
        exit()
print("Yes")
0