結果

問題 No.2922 Rose Garden
ユーザー ちーぴんちーぴん
提出日時 2024-10-13 20:04:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-10-13 20:04:40
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 70 ms
83,840 KB
testcase_16 AC 76 ms
93,440 KB
testcase_17 AC 89 ms
103,808 KB
testcase_18 AC 48 ms
61,440 KB
testcase_19 AC 65 ms
79,360 KB
testcase_20 AC 76 ms
90,112 KB
testcase_21 AC 90 ms
103,296 KB
testcase_22 AC 69 ms
83,584 KB
testcase_23 AC 84 ms
99,200 KB
testcase_24 AC 50 ms
65,280 KB
testcase_25 AC 65 ms
81,152 KB
testcase_26 AC 77 ms
91,136 KB
testcase_27 AC 84 ms
94,848 KB
testcase_28 AC 76 ms
91,136 KB
testcase_29 AC 72 ms
86,400 KB
testcase_30 AC 44 ms
60,544 KB
testcase_31 AC 42 ms
59,264 KB
testcase_32 AC 45 ms
59,776 KB
testcase_33 AC 43 ms
58,880 KB
testcase_34 AC 45 ms
60,800 KB
testcase_35 AC 43 ms
59,264 KB
testcase_36 AC 47 ms
62,336 KB
testcase_37 AC 47 ms
63,232 KB
testcase_38 AC 45 ms
59,904 KB
testcase_39 AC 46 ms
61,952 KB
testcase_40 AC 76 ms
89,600 KB
testcase_41 AC 60 ms
72,320 KB
testcase_42 AC 99 ms
108,416 KB
testcase_43 AC 65 ms
78,336 KB
testcase_44 AC 91 ms
104,576 KB
testcase_45 AC 52 ms
67,072 KB
testcase_46 AC 96 ms
108,928 KB
testcase_47 AC 75 ms
90,880 KB
testcase_48 AC 52 ms
66,944 KB
testcase_49 AC 85 ms
99,584 KB
testcase_50 AC 38 ms
51,584 KB
testcase_51 AC 38 ms
51,712 KB
testcase_52 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

highest = H[0]
possible = H[0] + S*B
for h in H[1:]:
    if h > possible:
        print('No')
        exit()
    if h > highest:
        highest = h
        possible += h + S*B
print('Yes')
0