結果

問題 No.2922 Rose Garden
ユーザー noriaokinoriaoki
提出日時 2024-10-12 15:09:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 3,000 ms
コード長 200 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-10-12 15:09:43
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
87,356 KB
testcase_01 AC 58 ms
77,624 KB
testcase_02 AC 63 ms
87,700 KB
testcase_03 AC 83 ms
107,776 KB
testcase_04 AC 61 ms
87,704 KB
testcase_05 AC 60 ms
83,456 KB
testcase_06 AC 53 ms
75,056 KB
testcase_07 AC 73 ms
99,148 KB
testcase_08 AC 47 ms
68,316 KB
testcase_09 AC 75 ms
101,832 KB
testcase_10 AC 48 ms
72,256 KB
testcase_11 AC 44 ms
68,408 KB
testcase_12 AC 62 ms
86,764 KB
testcase_13 AC 70 ms
94,404 KB
testcase_14 AC 51 ms
66,028 KB
testcase_15 AC 63 ms
84,480 KB
testcase_16 AC 70 ms
93,192 KB
testcase_17 AC 85 ms
104,028 KB
testcase_18 AC 45 ms
62,996 KB
testcase_19 AC 59 ms
79,516 KB
testcase_20 AC 69 ms
91,092 KB
testcase_21 AC 79 ms
102,276 KB
testcase_22 AC 61 ms
85,156 KB
testcase_23 AC 76 ms
99,240 KB
testcase_24 AC 44 ms
66,768 KB
testcase_25 AC 58 ms
80,076 KB
testcase_26 AC 70 ms
91,156 KB
testcase_27 AC 73 ms
95,560 KB
testcase_28 AC 69 ms
90,436 KB
testcase_29 AC 65 ms
86,612 KB
testcase_30 AC 44 ms
61,064 KB
testcase_31 AC 41 ms
59,352 KB
testcase_32 AC 40 ms
61,308 KB
testcase_33 AC 38 ms
59,900 KB
testcase_34 AC 39 ms
61,472 KB
testcase_35 AC 39 ms
60,912 KB
testcase_36 AC 41 ms
64,216 KB
testcase_37 AC 41 ms
64,568 KB
testcase_38 AC 40 ms
61,204 KB
testcase_39 AC 41 ms
64,128 KB
testcase_40 AC 67 ms
89,616 KB
testcase_41 AC 55 ms
73,480 KB
testcase_42 AC 89 ms
107,620 KB
testcase_43 AC 57 ms
79,016 KB
testcase_44 AC 82 ms
103,204 KB
testcase_45 AC 46 ms
68,744 KB
testcase_46 AC 85 ms
107,188 KB
testcase_47 AC 66 ms
90,276 KB
testcase_48 AC 50 ms
67,016 KB
testcase_49 AC 76 ms
99,200 KB
testcase_50 AC 34 ms
52,484 KB
testcase_51 AC 33 ms
53,312 KB
testcase_52 AC 34 ms
51,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, b = map(int, input().split())
h = list(map(int, input().split()))
mx = 0
ans = 'Yes'
for i in range(n):
    if h[i] > mx + s*b:
        ans = 'No'
        break
    mx = max(h[i], mx)
print(ans)
0