結果

問題 No.2922 Rose Garden
ユーザー titiatitia
提出日時 2024-10-16 04:22:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 247 ms / 3,000 ms
コード長 267 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,716 KB
最終ジャッジ日時 2024-10-16 04:22:55
合計ジャッジ時間 8,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
23,652 KB
testcase_01 AC 64 ms
18,092 KB
testcase_02 AC 117 ms
22,932 KB
testcase_03 AC 156 ms
32,132 KB
testcase_04 AC 111 ms
22,580 KB
testcase_05 AC 124 ms
21,056 KB
testcase_06 AC 81 ms
17,648 KB
testcase_07 AC 178 ms
28,096 KB
testcase_08 AC 63 ms
14,024 KB
testcase_09 AC 129 ms
29,716 KB
testcase_10 AC 51 ms
16,524 KB
testcase_11 AC 63 ms
14,044 KB
testcase_12 AC 93 ms
22,956 KB
testcase_13 AC 147 ms
26,912 KB
testcase_14 AC 60 ms
13,372 KB
testcase_15 AC 144 ms
22,496 KB
testcase_16 AC 181 ms
26,056 KB
testcase_17 AC 236 ms
30,376 KB
testcase_18 AC 42 ms
11,904 KB
testcase_19 AC 119 ms
19,484 KB
testcase_20 AC 168 ms
24,080 KB
testcase_21 AC 222 ms
29,900 KB
testcase_22 AC 134 ms
21,908 KB
testcase_23 AC 215 ms
28,436 KB
testcase_24 AC 59 ms
13,480 KB
testcase_25 AC 122 ms
19,776 KB
testcase_26 AC 185 ms
25,508 KB
testcase_27 AC 184 ms
26,124 KB
testcase_28 AC 173 ms
25,436 KB
testcase_29 AC 148 ms
23,412 KB
testcase_30 AC 40 ms
11,776 KB
testcase_31 AC 32 ms
10,880 KB
testcase_32 AC 36 ms
11,136 KB
testcase_33 AC 31 ms
10,880 KB
testcase_34 AC 42 ms
11,776 KB
testcase_35 AC 35 ms
11,136 KB
testcase_36 AC 47 ms
12,160 KB
testcase_37 AC 51 ms
12,616 KB
testcase_38 AC 38 ms
11,520 KB
testcase_39 AC 46 ms
12,160 KB
testcase_40 AC 159 ms
23,268 KB
testcase_41 AC 91 ms
16,696 KB
testcase_42 AC 236 ms
31,024 KB
testcase_43 AC 116 ms
19,480 KB
testcase_44 AC 224 ms
31,812 KB
testcase_45 AC 65 ms
14,192 KB
testcase_46 AC 247 ms
32,716 KB
testcase_47 AC 168 ms
24,492 KB
testcase_48 AC 63 ms
13,724 KB
testcase_49 AC 207 ms
28,484 KB
testcase_50 AC 30 ms
10,624 KB
testcase_51 AC 30 ms
10,624 KB
testcase_52 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

H=list(map(int,input().split()))

now=0
MAX=H[0]
OK=[0]*N
OK[0]=1

for i in range(N):
    if H[i]<=MAX:
        OK[i]=1
    else:
        print("No")
        exit()
        
    if OK[i]==1:
        MAX=max(MAX,H[i]+S*B)

print("Yes")
0