結果

問題 No.37 遊園地のアトラクション
ユーザー colognecologne
提出日時 2022-01-23 17:15:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,820 KB
実行使用メモリ 60,340 KB
最終ジャッジ日時 2025-01-01 18:35:18
合計ジャッジ時間 2,357 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,208 KB
testcase_01 AC 38 ms
59,452 KB
testcase_02 AC 36 ms
59,428 KB
testcase_03 AC 37 ms
59,852 KB
testcase_04 AC 37 ms
59,468 KB
testcase_05 AC 35 ms
58,760 KB
testcase_06 AC 36 ms
59,404 KB
testcase_07 AC 40 ms
59,564 KB
testcase_08 AC 35 ms
59,720 KB
testcase_09 AC 36 ms
59,780 KB
testcase_10 AC 38 ms
60,168 KB
testcase_11 AC 37 ms
59,120 KB
testcase_12 AC 35 ms
59,448 KB
testcase_13 AC 35 ms
59,104 KB
testcase_14 AC 35 ms
59,556 KB
testcase_15 AC 34 ms
60,096 KB
testcase_16 AC 36 ms
58,596 KB
testcase_17 AC 37 ms
60,288 KB
testcase_18 AC 38 ms
59,668 KB
testcase_19 AC 39 ms
59,156 KB
testcase_20 AC 36 ms
59,728 KB
testcase_21 AC 36 ms
58,720 KB
testcase_22 AC 39 ms
59,124 KB
testcase_23 AC 30 ms
52,772 KB
testcase_24 AC 30 ms
52,928 KB
testcase_25 AC 30 ms
52,216 KB
testcase_26 AC 30 ms
53,708 KB
testcase_27 AC 37 ms
60,224 KB
testcase_28 AC 31 ms
52,096 KB
testcase_29 AC 36 ms
60,340 KB
testcase_30 AC 32 ms
53,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    T = int(input())
    N = int(input())
    *C, = map(int, input().split())
    *V, = map(int, input().split())
    DP = [0]*(T+1)

    for i in range(N):
        c, v = C[i], V[i]
        while v > 0:
            for i in range(T-c, -1, -1):
                DP[i+c] = max(DP[i+c], DP[i]+v)
            v //= 2

    print(DP[-1])


if __name__ == '__main__':
    main()
0