結果

問題 No.2922 Rose Garden
ユーザー poeMoon0416poeMoon0416
提出日時 2024-10-12 15:40:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 107,548 KB
最終ジャッジ日時 2024-10-12 15:41:00
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
87,040 KB
testcase_01 AC 72 ms
76,288 KB
testcase_02 AC 70 ms
85,888 KB
testcase_03 AC 93 ms
107,548 KB
testcase_04 AC 69 ms
86,784 KB
testcase_05 AC 65 ms
82,944 KB
testcase_06 AC 58 ms
74,880 KB
testcase_07 WA -
testcase_08 AC 52 ms
67,200 KB
testcase_09 AC 82 ms
101,756 KB
testcase_10 AC 53 ms
71,936 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 75 ms
93,952 KB
testcase_14 WA -
testcase_15 AC 66 ms
84,224 KB
testcase_16 AC 88 ms
92,416 KB
testcase_17 AC 90 ms
104,320 KB
testcase_18 AC 47 ms
62,208 KB
testcase_19 AC 62 ms
78,720 KB
testcase_20 AC 72 ms
89,344 KB
testcase_21 AC 85 ms
102,016 KB
testcase_22 AC 68 ms
83,200 KB
testcase_23 AC 82 ms
98,432 KB
testcase_24 AC 48 ms
65,792 KB
testcase_25 AC 64 ms
80,256 KB
testcase_26 AC 75 ms
90,240 KB
testcase_27 AC 81 ms
93,952 KB
testcase_28 AC 77 ms
91,008 KB
testcase_29 AC 79 ms
86,144 KB
testcase_30 AC 50 ms
60,800 KB
testcase_31 AC 44 ms
59,392 KB
testcase_32 AC 44 ms
60,288 KB
testcase_33 AC 43 ms
59,136 KB
testcase_34 AC 47 ms
60,928 KB
testcase_35 AC 44 ms
60,032 KB
testcase_36 AC 44 ms
62,592 KB
testcase_37 AC 47 ms
63,360 KB
testcase_38 AC 43 ms
60,032 KB
testcase_39 AC 46 ms
62,080 KB
testcase_40 AC 71 ms
89,088 KB
testcase_41 AC 57 ms
73,472 KB
testcase_42 AC 96 ms
107,548 KB
testcase_43 AC 62 ms
78,208 KB
testcase_44 AC 87 ms
102,912 KB
testcase_45 AC 52 ms
66,944 KB
testcase_46 AC 93 ms
107,296 KB
testcase_47 AC 84 ms
89,472 KB
testcase_48 AC 49 ms
66,176 KB
testcase_49 AC 82 ms
98,692 KB
testcase_50 AC 38 ms
51,700 KB
testcase_51 AC 37 ms
52,224 KB
testcase_52 AC 38 ms
51,712 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:
        break
    ok_H = max(ok_H, Hi+S*B)

if ok_H >= H[-1]:
    print("Yes")
else:
    print("No")
0