結果

問題 No.37 遊園地のアトラクション
ユーザー sotanishysotanishy
提出日時 2021-08-09 14:15:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-09-21 13:16:20
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,708 KB
testcase_01 AC 43 ms
60,288 KB
testcase_02 AC 54 ms
65,792 KB
testcase_03 AC 57 ms
66,176 KB
testcase_04 AC 52 ms
64,256 KB
testcase_05 AC 59 ms
66,324 KB
testcase_06 AC 55 ms
64,128 KB
testcase_07 AC 65 ms
64,768 KB
testcase_08 AC 57 ms
65,408 KB
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 70 ms
66,968 KB
testcase_11 AC 60 ms
65,152 KB
testcase_12 AC 57 ms
66,560 KB
testcase_13 AC 60 ms
66,304 KB
testcase_14 AC 52 ms
64,744 KB
testcase_15 AC 55 ms
65,024 KB
testcase_16 AC 58 ms
66,304 KB
testcase_17 AC 57 ms
65,280 KB
testcase_18 AC 61 ms
64,896 KB
testcase_19 AC 45 ms
61,440 KB
testcase_20 AC 52 ms
64,228 KB
testcase_21 AC 52 ms
64,128 KB
testcase_22 AC 63 ms
63,488 KB
testcase_23 AC 35 ms
52,096 KB
testcase_24 AC 35 ms
52,480 KB
testcase_25 AC 35 ms
52,224 KB
testcase_26 AC 41 ms
52,480 KB
testcase_27 AC 54 ms
64,640 KB
testcase_28 AC 36 ms
51,968 KB
testcase_29 AC 58 ms
67,456 KB
testcase_30 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T = int(input())
N = int(input())
c = list(map(int, input().split()))
v = list(map(int, input().split()))
dp = [0] * (T+1)
for i in range(N):
    for j in range(T)[::-1]:
        k = 1
        x = v[i]
        s = x
        while j + k*c[i] <= T and x > 0:
            dp[j+k*c[i]] = max(dp[j+k*c[i]], dp[j] + s)
            x //= 2
            s += x
            k += 1
print(dp[T])
0