結果

問題 No.2922 Rose Garden
ユーザー titiatitia
提出日時 2024-10-16 04:20:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,584 KB
最終ジャッジ日時 2024-10-16 04:20:40
合計ジャッジ時間 9,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
23,784 KB
testcase_01 AC 79 ms
18,096 KB
testcase_02 AC 127 ms
22,936 KB
testcase_03 AC 185 ms
32,128 KB
testcase_04 AC 136 ms
22,576 KB
testcase_05 AC 124 ms
21,060 KB
testcase_06 AC 82 ms
17,524 KB
testcase_07 WA -
testcase_08 AC 64 ms
14,028 KB
testcase_09 AC 152 ms
29,764 KB
testcase_10 AC 58 ms
16,656 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 161 ms
26,908 KB
testcase_14 WA -
testcase_15 AC 137 ms
22,500 KB
testcase_16 AC 170 ms
25,928 KB
testcase_17 AC 219 ms
30,500 KB
testcase_18 AC 39 ms
11,776 KB
testcase_19 AC 116 ms
19,224 KB
testcase_20 AC 163 ms
23,956 KB
testcase_21 AC 224 ms
29,712 KB
testcase_22 AC 130 ms
21,908 KB
testcase_23 AC 199 ms
28,436 KB
testcase_24 AC 55 ms
13,484 KB
testcase_25 AC 114 ms
19,904 KB
testcase_26 AC 167 ms
25,504 KB
testcase_27 AC 175 ms
26,128 KB
testcase_28 AC 160 ms
25,564 KB
testcase_29 AC 156 ms
23,284 KB
testcase_30 AC 38 ms
11,648 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 34 ms
11,136 KB
testcase_33 AC 29 ms
10,752 KB
testcase_34 AC 38 ms
11,776 KB
testcase_35 AC 32 ms
11,008 KB
testcase_36 AC 46 ms
12,160 KB
testcase_37 AC 51 ms
12,612 KB
testcase_38 AC 35 ms
11,520 KB
testcase_39 AC 42 ms
12,160 KB
testcase_40 AC 155 ms
23,460 KB
testcase_41 AC 88 ms
16,700 KB
testcase_42 AC 229 ms
31,020 KB
testcase_43 AC 116 ms
19,484 KB
testcase_44 AC 209 ms
31,812 KB
testcase_45 AC 65 ms
14,192 KB
testcase_46 AC 247 ms
32,584 KB
testcase_47 AC 157 ms
24,364 KB
testcase_48 AC 62 ms
13,720 KB
testcase_49 AC 201 ms
28,352 KB
testcase_50 AC 29 ms
10,752 KB
testcase_51 AC 28 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=0
OK=[0]*N
OK[0]=1

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

if OK[N-1]==1:
    print("Yes")
else:
    print("No")
0