結果

問題 No.37 遊園地のアトラクション
ユーザー noriocnorioc
提出日時 2024-08-28 00:52:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 75,256 KB
最終ジャッジ日時 2024-08-28 00:52:32
合計ジャッジ時間 3,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,932 KB
testcase_01 AC 40 ms
59,892 KB
testcase_02 AC 46 ms
64,120 KB
testcase_03 AC 47 ms
66,256 KB
testcase_04 AC 47 ms
63,692 KB
testcase_05 AC 44 ms
63,904 KB
testcase_06 AC 45 ms
63,776 KB
testcase_07 AC 58 ms
75,256 KB
testcase_08 AC 45 ms
63,580 KB
testcase_09 AC 51 ms
59,808 KB
testcase_10 AC 51 ms
72,288 KB
testcase_11 AC 49 ms
73,572 KB
testcase_12 AC 44 ms
63,296 KB
testcase_13 AC 45 ms
65,048 KB
testcase_14 AC 43 ms
62,972 KB
testcase_15 AC 44 ms
64,184 KB
testcase_16 AC 46 ms
67,040 KB
testcase_17 AC 49 ms
66,032 KB
testcase_18 AC 61 ms
75,188 KB
testcase_19 AC 45 ms
60,652 KB
testcase_20 AC 46 ms
65,888 KB
testcase_21 AC 45 ms
62,064 KB
testcase_22 AC 58 ms
75,108 KB
testcase_23 AC 36 ms
53,404 KB
testcase_24 AC 37 ms
52,548 KB
testcase_25 AC 35 ms
53,768 KB
testcase_26 AC 36 ms
52,772 KB
testcase_27 AC 46 ms
63,360 KB
testcase_28 AC 38 ms
59,488 KB
testcase_29 AC 44 ms
61,848 KB
testcase_30 AC 36 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cs = C[:]
vs = V[:]
for c, v in zip(C, V):
    v //= 2
    while v > 0:
        cs.append(c)
        vs.append(v)
        v //= 2

dp = [0] * (T+1)
for c, v in zip(cs, vs):
    for i in reversed(range(T)):
        if i+c > T: continue
        dp[i+c] = max(dp[i+c], dp[i] + v)

ans = dp[T]
print(ans)
0