結果

問題 No.2922 Rose Garden
ユーザー ymskskyymsksky
提出日時 2024-10-12 16:16:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 3,000 ms
コード長 234 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 109,204 KB
最終ジャッジ日時 2024-10-12 16:16:19
合計ジャッジ時間 5,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
88,832 KB
testcase_01 AC 61 ms
77,440 KB
testcase_02 AC 70 ms
87,680 KB
testcase_03 AC 93 ms
108,672 KB
testcase_04 AC 71 ms
87,936 KB
testcase_05 AC 69 ms
85,504 KB
testcase_06 AC 65 ms
75,136 KB
testcase_07 AC 83 ms
99,968 KB
testcase_08 AC 53 ms
68,480 KB
testcase_09 AC 89 ms
105,088 KB
testcase_10 AC 55 ms
72,576 KB
testcase_11 AC 51 ms
67,584 KB
testcase_12 AC 71 ms
88,064 KB
testcase_13 AC 77 ms
96,384 KB
testcase_14 AC 51 ms
66,944 KB
testcase_15 AC 66 ms
84,736 KB
testcase_16 AC 77 ms
94,464 KB
testcase_17 AC 91 ms
105,856 KB
testcase_18 AC 46 ms
63,104 KB
testcase_19 AC 64 ms
79,872 KB
testcase_20 AC 84 ms
91,136 KB
testcase_21 AC 90 ms
105,216 KB
testcase_22 AC 65 ms
84,352 KB
testcase_23 AC 90 ms
101,760 KB
testcase_24 AC 52 ms
66,816 KB
testcase_25 AC 70 ms
81,936 KB
testcase_26 AC 76 ms
92,536 KB
testcase_27 AC 80 ms
95,744 KB
testcase_28 AC 78 ms
92,672 KB
testcase_29 AC 76 ms
87,936 KB
testcase_30 AC 45 ms
60,672 KB
testcase_31 AC 43 ms
58,880 KB
testcase_32 AC 43 ms
59,904 KB
testcase_33 AC 44 ms
58,876 KB
testcase_34 AC 45 ms
61,568 KB
testcase_35 AC 50 ms
59,392 KB
testcase_36 AC 45 ms
62,208 KB
testcase_37 AC 46 ms
63,616 KB
testcase_38 AC 44 ms
60,288 KB
testcase_39 AC 44 ms
62,336 KB
testcase_40 AC 74 ms
89,984 KB
testcase_41 AC 58 ms
74,240 KB
testcase_42 AC 96 ms
109,204 KB
testcase_43 AC 65 ms
80,512 KB
testcase_44 AC 96 ms
105,600 KB
testcase_45 AC 57 ms
68,864 KB
testcase_46 AC 97 ms
108,976 KB
testcase_47 AC 73 ms
91,008 KB
testcase_48 AC 56 ms
67,584 KB
testcase_49 AC 94 ms
100,608 KB
testcase_50 AC 39 ms
51,584 KB
testcase_51 AC 40 ms
51,456 KB
testcase_52 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, b = map(int, input().split())
hl = list(map(int, input().split()))
h = hl[0]
h_max = h
for g in hl[1:]:
    if h + s*b < g and h_max < g:
        print("No")
        exit()
    h_max = max(h_max, h + s*b)
    h = g
print("Yes")
0