結果

問題 No.37 遊園地のアトラクション
ユーザー KudeKude
提出日時 2020-09-05 23:33:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 68,980 KB
最終ジャッジ日時 2024-10-10 13:44:07
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,616 KB
testcase_01 AC 46 ms
62,204 KB
testcase_02 AC 51 ms
63,744 KB
testcase_03 AC 52 ms
64,384 KB
testcase_04 AC 49 ms
62,720 KB
testcase_05 AC 51 ms
63,268 KB
testcase_06 AC 52 ms
65,332 KB
testcase_07 AC 61 ms
67,720 KB
testcase_08 AC 48 ms
62,644 KB
testcase_09 AC 42 ms
59,560 KB
testcase_10 AC 58 ms
67,728 KB
testcase_11 AC 55 ms
65,724 KB
testcase_12 AC 50 ms
63,608 KB
testcase_13 AC 54 ms
64,860 KB
testcase_14 AC 50 ms
65,084 KB
testcase_15 AC 51 ms
65,184 KB
testcase_16 AC 54 ms
67,136 KB
testcase_17 AC 56 ms
65,500 KB
testcase_18 AC 56 ms
67,384 KB
testcase_19 AC 41 ms
60,428 KB
testcase_20 AC 50 ms
64,744 KB
testcase_21 AC 52 ms
65,792 KB
testcase_22 AC 55 ms
67,588 KB
testcase_23 AC 36 ms
52,212 KB
testcase_24 AC 37 ms
52,636 KB
testcase_25 AC 37 ms
54,372 KB
testcase_26 AC 36 ms
53,356 KB
testcase_27 AC 60 ms
68,980 KB
testcase_28 AC 44 ms
61,100 KB
testcase_29 AC 52 ms
64,728 KB
testcase_30 AC 38 ms
52,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
n = int(input())
c = list(map(int, input().split()))
v = list(map(int, input().split()))
dp = [0] * (t + 1000)
for ci, vi in zip(c, v):
    for i in range(t, -1, -1):
        vnow = vi
        for j in range(i + ci, i + ci * 9 + 1, ci):
            dp[j] = max(dp[j], dp[j - ci] + vnow)
            vnow //= 2
print(dp[t])
0