結果

問題 No.617 Nafmo、買い出しに行く
ユーザー cielciel
提出日時 2017-12-24 22:46:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 107,060 KB
最終ジャッジ日時 2024-12-17 18:41:01
合計ジャッジ時間 3,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n,k,*a=map(int,sys.stdin.read().split())
bag=[0]+[-float('inf')]*k
for e in a:
	for i in range(k,e-1,-1):bag[i]=max(bag[i],bag[i-e]+e)
print(max(bag))
0