結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 20 ms
7,168 KB
testcase_02 AC 114 ms
7,040 KB
testcase_03 AC 164 ms
7,168 KB
testcase_04 AC 72 ms
7,040 KB
testcase_05 AC 111 ms
6,784 KB
testcase_06 AC 96 ms
7,040 KB
testcase_07 AC 496 ms
7,040 KB
testcase_08 AC 63 ms
6,912 KB
testcase_09 AC 29 ms
6,784 KB
testcase_10 AC 388 ms
7,168 KB
testcase_11 AC 376 ms
7,296 KB
testcase_12 AC 108 ms
7,168 KB
testcase_13 AC 149 ms
7,168 KB
testcase_14 AC 69 ms
7,168 KB
testcase_15 AC 82 ms
7,040 KB
testcase_16 AC 220 ms
7,168 KB
testcase_17 AC 186 ms
7,168 KB
testcase_18 AC 473 ms
7,296 KB
testcase_19 AC 30 ms
6,912 KB
testcase_20 AC 164 ms
7,168 KB
testcase_21 AC 74 ms
7,168 KB
testcase_22 AC 680 ms
6,912 KB
testcase_23 AC 17 ms
7,168 KB
testcase_24 AC 17 ms
7,040 KB
testcase_25 AC 17 ms
7,168 KB
testcase_26 AC 18 ms
7,168 KB
testcase_27 AC 91 ms
7,168 KB
testcase_28 AC 17 ms
7,040 KB
testcase_29 AC 59 ms
7,168 KB
testcase_30 AC 17 ms
7,040 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