結果

問題 No.37 遊園地のアトラクション
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-05 01:32:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-10-15 08:09:12
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,288 KB
testcase_01 AC 45 ms
57,856 KB
testcase_02 AC 60 ms
64,128 KB
testcase_03 AC 57 ms
63,488 KB
testcase_04 AC 57 ms
62,848 KB
testcase_05 AC 56 ms
64,640 KB
testcase_06 AC 47 ms
61,056 KB
testcase_07 AC 54 ms
65,408 KB
testcase_08 AC 44 ms
59,008 KB
testcase_09 AC 40 ms
58,240 KB
testcase_10 AC 54 ms
64,768 KB
testcase_11 AC 57 ms
65,408 KB
testcase_12 AC 52 ms
62,592 KB
testcase_13 AC 52 ms
63,240 KB
testcase_14 AC 42 ms
59,136 KB
testcase_15 AC 55 ms
64,296 KB
testcase_16 AC 53 ms
63,872 KB
testcase_17 AC 51 ms
63,152 KB
testcase_18 AC 58 ms
65,920 KB
testcase_19 AC 42 ms
57,856 KB
testcase_20 AC 54 ms
64,256 KB
testcase_21 AC 45 ms
58,880 KB
testcase_22 AC 54 ms
65,408 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 62 ms
66,048 KB
testcase_28 AC 40 ms
51,968 KB
testcase_29 AC 56 ms
63,872 KB
testcase_30 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
n = int(input())
C = list(map(int, input().split()))
V = list(map(int, input().split()))
dp = [-1]*(t+1)
dp[0] = 0
for c, v in zip(C, V):
    for i in reversed(range(t+1)):
        if dp[i] == -1:
            continue
        j = i+c
        cur = v
        s = v
        while j <= t:
            dp[j] = max(dp[j], dp[i]+s)
            j += c
            cur //= 2
            s += cur
            if cur == 0:
                break
print(max(dp))
0