結果

問題 No.37 遊園地のアトラクション
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 10:40:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 301 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 65,124 KB
最終ジャッジ日時 2024-10-09 22:17:07
合計ジャッジ時間 3,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
62,412 KB
testcase_01 AC 53 ms
62,204 KB
testcase_02 AC 57 ms
64,160 KB
testcase_03 AC 55 ms
63,532 KB
testcase_04 AC 52 ms
63,208 KB
testcase_05 AC 56 ms
63,708 KB
testcase_06 AC 56 ms
63,184 KB
testcase_07 AC 63 ms
64,424 KB
testcase_08 AC 54 ms
62,700 KB
testcase_09 AC 48 ms
60,628 KB
testcase_10 AC 60 ms
63,108 KB
testcase_11 AC 59 ms
64,024 KB
testcase_12 AC 57 ms
63,580 KB
testcase_13 AC 57 ms
64,168 KB
testcase_14 AC 56 ms
65,124 KB
testcase_15 AC 56 ms
64,552 KB
testcase_16 AC 58 ms
65,064 KB
testcase_17 AC 56 ms
63,136 KB
testcase_18 AC 62 ms
64,116 KB
testcase_19 AC 47 ms
60,572 KB
testcase_20 AC 58 ms
64,144 KB
testcase_21 AC 54 ms
62,708 KB
testcase_22 AC 55 ms
61,696 KB
testcase_23 AC 39 ms
52,932 KB
testcase_24 AC 39 ms
53,868 KB
testcase_25 AC 39 ms
53,072 KB
testcase_26 AC 44 ms
58,644 KB
testcase_27 AC 56 ms
64,208 KB
testcase_28 AC 48 ms
59,464 KB
testcase_29 AC 55 ms
64,232 KB
testcase_30 AC 39 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
n = int(input())
C = list(map(int,input().split()))
V = list(map(int,input().split()))

dp = [0]*(T+1)
for c,v in zip(C,V):
    for i in range(10):
        for t in range(T+1)[::-1]:
            if c+t <= T:
                dp[c+t] = max(dp[c+t],dp[t]+v)
        v //= 2
print(dp[-1])
0