結果

問題 No.37 遊園地のアトラクション
ユーザー vwxyzvwxyz
提出日時 2024-02-27 08:56:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 805 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-29 11:55:58
合計ジャッジ時間 7,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 149 ms
10,752 KB
testcase_03 AC 203 ms
11,008 KB
testcase_04 AC 89 ms
10,624 KB
testcase_05 AC 138 ms
10,752 KB
testcase_06 AC 152 ms
10,880 KB
testcase_07 AC 659 ms
11,008 KB
testcase_08 AC 81 ms
10,880 KB
testcase_09 AC 37 ms
10,752 KB
testcase_10 AC 517 ms
11,008 KB
testcase_11 AC 429 ms
11,008 KB
testcase_12 AC 135 ms
10,752 KB
testcase_13 AC 177 ms
10,752 KB
testcase_14 AC 96 ms
10,752 KB
testcase_15 AC 103 ms
10,880 KB
testcase_16 AC 298 ms
10,880 KB
testcase_17 AC 242 ms
11,008 KB
testcase_18 AC 633 ms
10,880 KB
testcase_19 AC 38 ms
10,624 KB
testcase_20 AC 198 ms
10,880 KB
testcase_21 AC 103 ms
10,880 KB
testcase_22 AC 805 ms
11,008 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 24 ms
10,752 KB
testcase_25 AC 24 ms
10,624 KB
testcase_26 AC 24 ms
10,624 KB
testcase_27 AC 150 ms
10,624 KB
testcase_28 AC 25 ms
10,624 KB
testcase_29 AC 90 ms
10,752 KB
testcase_30 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
N=int(input())
C=list(map(int,input().split()))
V=list(map(int,input().split()))
inf=1<60
dp=[-inf]*(T+1)
dp[0]=0
for c,v in zip(C,V):
    for _ in range(10):
        for t in range(T,c-1,-1):
            dp[t]=max(dp[t],dp[t-c]+v)
        v//=2
ans=max(dp)
print(ans)
0