結果

問題 No.37 遊園地のアトラクション
ユーザー pluto77pluto77
提出日時 2017-08-12 09:53:07
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 333 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-12-31 00:06:56
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 20 ms
7,040 KB
testcase_02 AC 110 ms
7,168 KB
testcase_03 AC 157 ms
7,168 KB
testcase_04 AC 69 ms
7,168 KB
testcase_05 AC 109 ms
7,040 KB
testcase_06 AC 97 ms
7,168 KB
testcase_07 AC 478 ms
7,296 KB
testcase_08 AC 60 ms
7,168 KB
testcase_09 AC 28 ms
7,168 KB
testcase_10 AC 378 ms
7,168 KB
testcase_11 AC 367 ms
7,296 KB
testcase_12 AC 102 ms
7,296 KB
testcase_13 AC 138 ms
7,168 KB
testcase_14 AC 64 ms
7,168 KB
testcase_15 AC 78 ms
6,912 KB
testcase_16 AC 208 ms
7,168 KB
testcase_17 AC 182 ms
7,168 KB
testcase_18 AC 467 ms
7,296 KB
testcase_19 AC 28 ms
7,168 KB
testcase_20 AC 159 ms
7,168 KB
testcase_21 AC 74 ms
7,168 KB
testcase_22 AC 656 ms
7,168 KB
testcase_23 AC 16 ms
7,168 KB
testcase_24 AC 16 ms
7,168 KB
testcase_25 AC 16 ms
7,168 KB
testcase_26 AC 16 ms
7,040 KB
testcase_27 AC 88 ms
7,168 KB
testcase_28 AC 16 ms
7,168 KB
testcase_29 AC 56 ms
7,040 KB
testcase_30 AC 17 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_37

dp=[-1 for i in xrange(100000)]
t=int(raw_input())
n=int(raw_input())
c=map(int,raw_input().split())
v=map(int,raw_input().split())
dp[0]=0
res=0
for i in xrange(n):
 while v[i]:
  for j in xrange(t,c[i]-1,-1):
   if dp[j]:
    dp[j]=max(dp[j],dp[j-c[i]]+v[i])
  v[i]/=2
for i in xrange(t+1):
 res=max(dp[i],res)
print res
0