結果

問題 No.2922 Rose Garden
ユーザー ktsn-udktsn-ud
提出日時 2024-10-12 15:12:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 3,000 ms
コード長 839 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 106,924 KB
最終ジャッジ日時 2024-10-12 15:12:42
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
92,756 KB
testcase_01 AC 61 ms
79,460 KB
testcase_02 AC 73 ms
92,608 KB
testcase_03 AC 96 ms
105,532 KB
testcase_04 AC 71 ms
91,556 KB
testcase_05 AC 69 ms
88,512 KB
testcase_06 AC 61 ms
79,908 KB
testcase_07 AC 83 ms
99,368 KB
testcase_08 AC 54 ms
71,440 KB
testcase_09 AC 90 ms
102,064 KB
testcase_10 AC 57 ms
76,856 KB
testcase_11 AC 48 ms
66,860 KB
testcase_12 AC 71 ms
87,772 KB
testcase_13 AC 86 ms
103,576 KB
testcase_14 AC 47 ms
66,800 KB
testcase_15 AC 75 ms
92,652 KB
testcase_16 AC 76 ms
93,492 KB
testcase_17 AC 96 ms
102,220 KB
testcase_18 AC 49 ms
65,444 KB
testcase_19 AC 67 ms
84,120 KB
testcase_20 AC 72 ms
90,976 KB
testcase_21 AC 93 ms
102,352 KB
testcase_22 AC 74 ms
92,496 KB
testcase_23 AC 84 ms
99,976 KB
testcase_24 AC 49 ms
66,576 KB
testcase_25 AC 69 ms
86,784 KB
testcase_26 AC 81 ms
97,980 KB
testcase_27 AC 88 ms
101,580 KB
testcase_28 AC 77 ms
94,004 KB
testcase_29 AC 75 ms
93,228 KB
testcase_30 AC 43 ms
61,284 KB
testcase_31 AC 40 ms
59,148 KB
testcase_32 AC 40 ms
60,248 KB
testcase_33 AC 42 ms
59,336 KB
testcase_34 AC 42 ms
60,940 KB
testcase_35 AC 41 ms
59,944 KB
testcase_36 AC 42 ms
62,388 KB
testcase_37 AC 45 ms
62,692 KB
testcase_38 AC 41 ms
61,212 KB
testcase_39 AC 43 ms
63,580 KB
testcase_40 AC 72 ms
90,444 KB
testcase_41 AC 61 ms
77,496 KB
testcase_42 AC 98 ms
105,372 KB
testcase_43 AC 66 ms
81,760 KB
testcase_44 AC 93 ms
102,176 KB
testcase_45 AC 55 ms
71,244 KB
testcase_46 AC 109 ms
106,924 KB
testcase_47 AC 82 ms
100,156 KB
testcase_48 AC 54 ms
71,756 KB
testcase_49 AC 87 ms
98,964 KB
testcase_50 AC 39 ms
52,744 KB
testcase_51 AC 38 ms
53,492 KB
testcase_52 AC 38 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


def div(p, wari):
    return (p+wari-1) // wari


def main():
    n, s, b = map(int, stdin.readline().split())
    h = list(map(int, stdin.readline().split()))

    onlyup = [h[0]]
    highest = h[0]
    for i in range(1, n):
        if h[i] > highest:
            onlyup.append(h[i])
            highest = h[i]

    cur_height = h[0]
    stamina = s
    for i in range(1, len(onlyup)):
        need = div(onlyup[i] - cur_height, b)
        if need <= stamina:
            stamina -= need
        else:
            cur_height = onlyup[i-1]
            stamina = s
            need = div(onlyup[i] - cur_height, b)
            if need <= stamina:
                stamina -= need
            else:
                print('No')
                return
    print('Yes')
    return


if __name__ == "__main__":
    main()
0