結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
87,624 KB
testcase_01 AC 55 ms
76,720 KB
testcase_02 AC 68 ms
87,092 KB
testcase_03 AC 90 ms
107,596 KB
testcase_04 AC 63 ms
87,324 KB
testcase_05 AC 60 ms
83,312 KB
testcase_06 AC 52 ms
76,476 KB
testcase_07 AC 77 ms
98,040 KB
testcase_08 AC 50 ms
68,192 KB
testcase_09 AC 86 ms
101,644 KB
testcase_10 AC 51 ms
72,156 KB
testcase_11 AC 45 ms
67,684 KB
testcase_12 AC 62 ms
87,932 KB
testcase_13 AC 69 ms
94,076 KB
testcase_14 AC 43 ms
65,860 KB
testcase_15 AC 60 ms
83,692 KB
testcase_16 AC 68 ms
93,192 KB
testcase_17 AC 82 ms
104,380 KB
testcase_18 AC 43 ms
62,756 KB
testcase_19 AC 62 ms
79,820 KB
testcase_20 AC 70 ms
90,940 KB
testcase_21 AC 78 ms
102,012 KB
testcase_22 AC 62 ms
83,100 KB
testcase_23 AC 85 ms
98,484 KB
testcase_24 AC 43 ms
66,388 KB
testcase_25 AC 66 ms
80,240 KB
testcase_26 AC 69 ms
90,676 KB
testcase_27 AC 70 ms
94,780 KB
testcase_28 AC 68 ms
92,060 KB
testcase_29 AC 64 ms
86,940 KB
testcase_30 AC 43 ms
62,048 KB
testcase_31 AC 38 ms
59,632 KB
testcase_32 AC 38 ms
60,632 KB
testcase_33 AC 38 ms
60,088 KB
testcase_34 AC 40 ms
61,736 KB
testcase_35 AC 37 ms
61,044 KB
testcase_36 AC 43 ms
62,336 KB
testcase_37 AC 41 ms
63,660 KB
testcase_38 AC 39 ms
60,612 KB
testcase_39 AC 41 ms
63,064 KB
testcase_40 AC 65 ms
89,424 KB
testcase_41 AC 51 ms
73,812 KB
testcase_42 AC 85 ms
107,300 KB
testcase_43 AC 54 ms
79,392 KB
testcase_44 AC 89 ms
103,280 KB
testcase_45 AC 47 ms
68,132 KB
testcase_46 AC 88 ms
107,412 KB
testcase_47 AC 67 ms
92,032 KB
testcase_48 AC 44 ms
66,476 KB
testcase_49 AC 77 ms
99,468 KB
testcase_50 AC 35 ms
52,512 KB
testcase_51 AC 36 ms
52,912 KB
testcase_52 AC 37 ms
51,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ok_H = H[0]+S*B
for Hi in H:
    if Hi > ok_H:
        print("No")
        break
    ok_H = max(ok_H, Hi+S*B)
else:
    print("Yes")
0