結果

問題 No.2922 Rose Garden
ユーザー rlangevinrlangevin
提出日時 2024-11-06 08:54:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 3,000 ms
コード長 196 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,280 KB
最終ジャッジ日時 2024-11-06 08:54:11
合計ジャッジ時間 7,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
88,804 KB
testcase_01 AC 59 ms
78,448 KB
testcase_02 AC 69 ms
87,868 KB
testcase_03 AC 91 ms
109,132 KB
testcase_04 AC 99 ms
87,736 KB
testcase_05 AC 67 ms
84,472 KB
testcase_06 AC 58 ms
75,268 KB
testcase_07 AC 79 ms
99,028 KB
testcase_08 AC 51 ms
69,128 KB
testcase_09 AC 84 ms
103,364 KB
testcase_10 AC 53 ms
73,132 KB
testcase_11 AC 50 ms
68,444 KB
testcase_12 AC 69 ms
88,164 KB
testcase_13 AC 78 ms
96,428 KB
testcase_14 AC 50 ms
66,288 KB
testcase_15 AC 66 ms
86,176 KB
testcase_16 AC 74 ms
95,104 KB
testcase_17 AC 88 ms
105,592 KB
testcase_18 AC 47 ms
63,256 KB
testcase_19 AC 65 ms
79,932 KB
testcase_20 AC 72 ms
90,780 KB
testcase_21 AC 85 ms
103,960 KB
testcase_22 AC 65 ms
85,748 KB
testcase_23 AC 81 ms
99,528 KB
testcase_24 AC 51 ms
67,116 KB
testcase_25 AC 66 ms
82,228 KB
testcase_26 AC 74 ms
92,672 KB
testcase_27 AC 78 ms
96,604 KB
testcase_28 AC 75 ms
93,392 KB
testcase_29 AC 70 ms
88,296 KB
testcase_30 AC 46 ms
62,660 KB
testcase_31 AC 45 ms
59,912 KB
testcase_32 AC 45 ms
60,368 KB
testcase_33 AC 43 ms
59,528 KB
testcase_34 AC 49 ms
62,852 KB
testcase_35 AC 44 ms
60,864 KB
testcase_36 AC 45 ms
64,104 KB
testcase_37 AC 47 ms
64,396 KB
testcase_38 AC 46 ms
60,732 KB
testcase_39 AC 45 ms
62,692 KB
testcase_40 AC 71 ms
89,792 KB
testcase_41 AC 55 ms
73,336 KB
testcase_42 AC 94 ms
109,280 KB
testcase_43 AC 64 ms
80,272 KB
testcase_44 AC 87 ms
104,600 KB
testcase_45 AC 51 ms
68,928 KB
testcase_46 AC 93 ms
108,956 KB
testcase_47 AC 70 ms
91,736 KB
testcase_48 AC 51 ms
68,160 KB
testcase_49 AC 87 ms
100,372 KB
testcase_50 AC 38 ms
52,636 KB
testcase_51 AC 39 ms
51,908 KB
testcase_52 AC 38 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S, B = map(int, input().split())
H = list(map(int, input().split()))
ma = H[0] + S * B
for h in H[1:]:
    if h > ma:
        print("No")
        exit()
    ma = max(ma, h + S * B)
print("Yes")
0