結果

問題 No.2922 Rose Garden
ユーザー vwxyzvwxyz
提出日時 2024-10-12 14:48:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 3,000 ms
コード長 251 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,736 KB
最終ジャッジ日時 2024-10-12 14:48:23
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
22,928 KB
testcase_01 AC 70 ms
18,108 KB
testcase_02 AC 101 ms
21,952 KB
testcase_03 AC 163 ms
31,264 KB
testcase_04 AC 89 ms
22,456 KB
testcase_05 AC 85 ms
20,936 KB
testcase_06 AC 74 ms
17,552 KB
testcase_07 AC 104 ms
27,972 KB
testcase_08 AC 49 ms
14,028 KB
testcase_09 AC 145 ms
28,992 KB
testcase_10 AC 71 ms
16,336 KB
testcase_11 AC 42 ms
13,924 KB
testcase_12 AC 84 ms
22,704 KB
testcase_13 AC 122 ms
26,176 KB
testcase_14 AC 39 ms
13,376 KB
testcase_15 AC 103 ms
21,648 KB
testcase_16 AC 91 ms
24,944 KB
testcase_17 AC 142 ms
30,380 KB
testcase_18 AC 33 ms
11,776 KB
testcase_19 AC 76 ms
19,368 KB
testcase_20 AC 89 ms
23,964 KB
testcase_21 AC 142 ms
29,840 KB
testcase_22 AC 100 ms
21,184 KB
testcase_23 AC 109 ms
28,416 KB
testcase_24 AC 39 ms
13,476 KB
testcase_25 AC 85 ms
19,784 KB
testcase_26 AC 111 ms
24,988 KB
testcase_27 AC 127 ms
26,000 KB
testcase_28 AC 99 ms
24,572 KB
testcase_29 AC 104 ms
22,432 KB
testcase_30 AC 31 ms
11,648 KB
testcase_31 AC 27 ms
10,752 KB
testcase_32 AC 28 ms
11,136 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 31 ms
11,776 KB
testcase_35 AC 29 ms
11,136 KB
testcase_36 AC 33 ms
12,288 KB
testcase_37 AC 36 ms
12,608 KB
testcase_38 AC 32 ms
11,392 KB
testcase_39 AC 33 ms
12,160 KB
testcase_40 AC 78 ms
23,336 KB
testcase_41 AC 63 ms
16,708 KB
testcase_42 AC 133 ms
31,028 KB
testcase_43 AC 71 ms
19,376 KB
testcase_44 AC 149 ms
30,404 KB
testcase_45 AC 55 ms
14,076 KB
testcase_46 AC 151 ms
31,736 KB
testcase_47 AC 119 ms
24,368 KB
testcase_48 AC 48 ms
13,732 KB
testcase_49 AC 121 ms
28,364 KB
testcase_50 AC 29 ms
10,624 KB
testcase_51 AC 27 ms
10,624 KB
testcase_52 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B=map(int,input().split())
H=list(map(int,input().split()))
queue=[]
for h in H:
    if queue and queue[-1]>h:
        continue
    queue.append(h)
H=queue
N=len(H)
ans="Yes"
for i in range(1,N):
    if H[i-1]+S*B<H[i]:
        ans="No"
print(ans)
0