結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 双六双六
提出日時 2020-08-05 22:05:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-09-17 15:10:16
合計ジャッジ時間 3,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
76,276 KB
testcase_01 AC 72 ms
74,880 KB
testcase_02 AC 115 ms
75,264 KB
testcase_03 AC 147 ms
76,672 KB
testcase_04 AC 86 ms
75,236 KB
testcase_05 AC 160 ms
77,184 KB
testcase_06 AC 176 ms
75,008 KB
testcase_07 AC 174 ms
75,392 KB
testcase_08 AC 58 ms
74,240 KB
testcase_09 AC 61 ms
74,368 KB
testcase_10 AC 179 ms
79,104 KB
testcase_11 AC 182 ms
79,360 KB
testcase_12 AC 180 ms
77,952 KB
testcase_13 AC 176 ms
78,592 KB
testcase_14 AC 180 ms
78,976 KB
testcase_15 AC 169 ms
75,008 KB
testcase_16 AC 171 ms
75,392 KB
testcase_17 AC 171 ms
74,496 KB
testcase_18 AC 58 ms
74,368 KB
testcase_19 AC 57 ms
74,624 KB
testcase_20 AC 62 ms
74,368 KB
testcase_21 AC 75 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, K = getlist()
	DP = [0] * (2 * 10 ** 6 + 1)
	DP[0] = 1
	for i in range(N):
		A = int(input())
		for j in range(2 * 10 ** 6, -1, -1):
			if DP[j] == 1:
				DP[j + A] = 1

	ans = 0
	for i in range(K + 1):
		if DP[i] == 1:
			ans = i

	print(ans)


if __name__ == '__main__':
	main()
0