結果

問題 No.37 遊園地のアトラクション
ユーザー szkhtsszkhts
提出日時 2021-08-09 14:55:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 980 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-21 14:01:21
合計ジャッジ時間 8,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
11,136 KB
testcase_01 AC 36 ms
10,752 KB
testcase_02 AC 172 ms
10,880 KB
testcase_03 AC 246 ms
11,008 KB
testcase_04 AC 109 ms
10,752 KB
testcase_05 AC 171 ms
10,880 KB
testcase_06 AC 146 ms
11,136 KB
testcase_07 AC 737 ms
11,008 KB
testcase_08 AC 98 ms
10,880 KB
testcase_09 AC 48 ms
10,880 KB
testcase_10 AC 567 ms
11,008 KB
testcase_11 AC 564 ms
11,264 KB
testcase_12 AC 162 ms
10,880 KB
testcase_13 AC 219 ms
11,008 KB
testcase_14 AC 106 ms
11,008 KB
testcase_15 AC 125 ms
10,752 KB
testcase_16 AC 323 ms
11,136 KB
testcase_17 AC 278 ms
11,136 KB
testcase_18 AC 693 ms
11,008 KB
testcase_19 AC 48 ms
10,880 KB
testcase_20 AC 247 ms
10,880 KB
testcase_21 AC 115 ms
11,008 KB
testcase_22 AC 980 ms
11,136 KB
testcase_23 AC 30 ms
11,008 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 143 ms
10,752 KB
testcase_28 AC 32 ms
10,880 KB
testcase_29 AC 91 ms
10,752 KB
testcase_30 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N = int(input())
C = list(map(int, input().split()))
V = list(map(int, input().split()))
dp = [0] * 20000

for i in range(N):
    while V[i] > 0:
        for j in range(T - 1, -1, -1):
            dp[j + C[i]] = max(dp[j + C[i]], dp[j] + V[i])

        V[i] = V[i] // 2

ans = 0
for i in range(T + 1):
    ans = max(ans, dp[i])

print(ans)
0