結果

問題 No.2922 Rose Garden
ユーザー ありあけありあけ
提出日時 2024-10-12 15:43:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 3,000 ms
コード長 400 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,588 KB
最終ジャッジ日時 2024-10-12 15:43:21
合計ジャッジ時間 6,484 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
23,524 KB
testcase_01 AC 64 ms
17,972 KB
testcase_02 AC 94 ms
22,676 KB
testcase_03 AC 140 ms
32,128 KB
testcase_04 AC 94 ms
22,448 KB
testcase_05 AC 86 ms
20,932 KB
testcase_06 AC 68 ms
17,652 KB
testcase_07 AC 112 ms
28,104 KB
testcase_08 AC 50 ms
14,024 KB
testcase_09 AC 125 ms
29,596 KB
testcase_10 AC 55 ms
16,528 KB
testcase_11 AC 43 ms
13,920 KB
testcase_12 AC 81 ms
22,700 KB
testcase_13 AC 118 ms
26,908 KB
testcase_14 AC 38 ms
13,368 KB
testcase_15 AC 113 ms
22,364 KB
testcase_16 AC 98 ms
25,800 KB
testcase_17 AC 152 ms
30,372 KB
testcase_18 AC 33 ms
11,776 KB
testcase_19 AC 85 ms
19,360 KB
testcase_20 AC 92 ms
23,824 KB
testcase_21 AC 145 ms
29,708 KB
testcase_22 AC 106 ms
21,780 KB
testcase_23 AC 118 ms
28,308 KB
testcase_24 AC 41 ms
13,360 KB
testcase_25 AC 90 ms
19,720 KB
testcase_26 AC 118 ms
25,380 KB
testcase_27 AC 141 ms
26,124 KB
testcase_28 AC 104 ms
25,304 KB
testcase_29 AC 106 ms
23,160 KB
testcase_30 AC 32 ms
11,648 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 28 ms
11,136 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 33 ms
11,776 KB
testcase_35 AC 29 ms
10,880 KB
testcase_36 AC 34 ms
12,032 KB
testcase_37 AC 37 ms
12,484 KB
testcase_38 AC 32 ms
11,392 KB
testcase_39 AC 37 ms
12,032 KB
testcase_40 AC 85 ms
23,456 KB
testcase_41 AC 65 ms
16,572 KB
testcase_42 AC 146 ms
31,028 KB
testcase_43 AC 75 ms
19,352 KB
testcase_44 AC 167 ms
31,688 KB
testcase_45 AC 50 ms
14,192 KB
testcase_46 AC 166 ms
32,588 KB
testcase_47 AC 129 ms
24,236 KB
testcase_48 AC 51 ms
13,720 KB
testcase_49 AC 133 ms
28,484 KB
testcase_50 AC 28 ms
10,624 KB
testcase_51 AC 28 ms
10,496 KB
testcase_52 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#スタミナを使い切って最も高く飛ぶ
#行ける範囲で最も高い足場に移動する
stack = [H[0]]
for i in range(1,N):
    if stack[-1] < H[i]:
        stack.append(H[i])
#rint(stack)
for i in range(len(stack)-1):
    #rint(i)
    if S*B < stack[i+1] - stack[i]:
        print("No")
        exit()
print("Yes")
0