結果

問題 No.2922 Rose Garden
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 14:53:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 3,000 ms
コード長 501 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-10-12 14:53:29
合計ジャッジ時間 8,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
93,184 KB
testcase_01 AC 85 ms
85,504 KB
testcase_02 AC 142 ms
92,416 KB
testcase_03 AC 176 ms
107,008 KB
testcase_04 AC 148 ms
92,672 KB
testcase_05 AC 147 ms
90,496 KB
testcase_06 AC 113 ms
84,096 KB
testcase_07 AC 172 ms
100,608 KB
testcase_08 AC 90 ms
79,360 KB
testcase_09 AC 144 ms
104,064 KB
testcase_10 AC 61 ms
82,688 KB
testcase_11 AC 72 ms
79,616 KB
testcase_12 AC 106 ms
92,800 KB
testcase_13 AC 190 ms
98,048 KB
testcase_14 AC 83 ms
78,132 KB
testcase_15 AC 192 ms
90,752 KB
testcase_16 AC 189 ms
97,408 KB
testcase_17 AC 281 ms
104,064 KB
testcase_18 AC 72 ms
76,160 KB
testcase_19 AC 165 ms
87,168 KB
testcase_20 AC 243 ms
94,976 KB
testcase_21 AC 268 ms
103,936 KB
testcase_22 AC 140 ms
90,496 KB
testcase_23 AC 236 ms
101,084 KB
testcase_24 AC 79 ms
78,448 KB
testcase_25 AC 155 ms
88,704 KB
testcase_26 AC 201 ms
95,360 KB
testcase_27 AC 240 ms
97,536 KB
testcase_28 AC 187 ms
95,488 KB
testcase_29 AC 174 ms
92,544 KB
testcase_30 AC 46 ms
67,328 KB
testcase_31 AC 45 ms
62,592 KB
testcase_32 AC 48 ms
66,560 KB
testcase_33 AC 48 ms
63,872 KB
testcase_34 AC 53 ms
69,376 KB
testcase_35 AC 44 ms
64,128 KB
testcase_36 AC 53 ms
72,704 KB
testcase_37 AC 51 ms
73,472 KB
testcase_38 AC 49 ms
67,712 KB
testcase_39 AC 48 ms
70,528 KB
testcase_40 AC 206 ms
94,848 KB
testcase_41 AC 89 ms
82,688 KB
testcase_42 AC 261 ms
106,752 KB
testcase_43 AC 144 ms
86,912 KB
testcase_44 AC 277 ms
104,064 KB
testcase_45 AC 93 ms
79,360 KB
testcase_46 AC 130 ms
107,136 KB
testcase_47 AC 128 ms
95,104 KB
testcase_48 AC 61 ms
78,592 KB
testcase_49 AC 154 ms
100,864 KB
testcase_50 AC 34 ms
51,840 KB
testcase_51 AC 35 ms
51,968 KB
testcase_52 AC 33 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = {S:H[0]}
for i in range(1,N):
    ndp = {}
    for s,h in dp.items():
        need = max(0,H[i]-h)
        k = 0--need//B
        if k > s: continue
        ns = s-k
        nh = h + k*B
        if ns in ndp:
            ndp[ns] = max(ndp[ns],nh)
        else:
            ndp[ns] = nh
        if S in ndp:
            ndp[S] = max(ndp[S],H[i])
        else:
            ndp[S] = H[i]
    dp = ndp

print('Yes' if dp else 'No')
0