結果

問題 No.2922 Rose Garden
ユーザー ありあけありあけ
提出日時 2024-10-12 15:13:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 660 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,144 KB
最終ジャッジ日時 2024-10-12 15:14:03
合計ジャッジ時間 5,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 58 ms
18,132 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 49 ms
16,608 KB
testcase_11 AC 46 ms
14,336 KB
testcase_12 AC 75 ms
22,856 KB
testcase_13 RE -
testcase_14 AC 45 ms
13,784 KB
testcase_15 RE -
testcase_16 AC 106 ms
25,232 KB
testcase_17 RE -
testcase_18 AC 34 ms
12,160 KB
testcase_19 RE -
testcase_20 AC 102 ms
23,984 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 46 ms
13,624 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 35 ms
11,776 KB
testcase_31 AC 30 ms
11,008 KB
testcase_32 AC 32 ms
11,264 KB
testcase_33 AC 30 ms
10,880 KB
testcase_34 AC 35 ms
11,904 KB
testcase_35 AC 31 ms
11,136 KB
testcase_36 AC 38 ms
12,288 KB
testcase_37 AC 41 ms
12,752 KB
testcase_38 AC 33 ms
11,648 KB
testcase_39 AC 40 ms
12,412 KB
testcase_40 AC 96 ms
23,616 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 29 ms
10,752 KB
testcase_51 AC 28 ms
10,752 KB
testcase_52 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#スタミナを使い切って最も高く飛ぶ
#行ける範囲で最も高い足場に移動する
def move(now,S,B,H):
    #nowは0~N-1
    height = H[now] + S*B
    pos = now
    maxi = now
    while True:
        if pos == N-1:
            print("Yes")
            exit()
        elif H[pos+1] <= height:
            if H[maxi] <= H[pos+1]:
                maxi = pos+1
            pos += 1
        elif H[pos+1] >= height:
            if now != maxi:
                move(maxi,S,B,H)
            else:
                print("No")
                exit()
                
move(0,S,B,H)
0