結果

問題 No.2922 Rose Garden
ユーザー ありあけありあけ
提出日時 2024-10-12 15:04:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 633 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,756 KB
最終ジャッジ日時 2024-10-12 15:04:12
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
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 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 109 ms
25,228 KB
testcase_17 RE -
testcase_18 AC 35 ms
12,032 KB
testcase_19 RE -
testcase_20 AC 103 ms
23,856 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 47 ms
13,628 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 35 ms
11,520 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 33 ms
11,264 KB
testcase_33 AC 37 ms
10,752 KB
testcase_34 AC 36 ms
11,776 KB
testcase_35 AC 31 ms
11,008 KB
testcase_36 AC 37 ms
12,032 KB
testcase_37 AC 40 ms
12,624 KB
testcase_38 AC 34 ms
11,520 KB
testcase_39 AC 37 ms
12,028 KB
testcase_40 AC 98 ms
23,368 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 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()))

#スタミナを使い切って最も高く飛ぶ
#行ける範囲で最も高い足場に移動する
def move(now,S,B,H):
    height = H[now] + S*B
    pos = now
    maxi = 0
    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