結果

問題 No.1861 Required Number
ユーザー NatsubiSoganNatsubiSogan
提出日時 2022-03-04 22:13:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 823 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 156,164 KB
最終ジャッジ日時 2024-07-18 22:58:33
合計ジャッジ時間 10,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,552 KB
testcase_01 AC 42 ms
58,304 KB
testcase_02 AC 38 ms
53,916 KB
testcase_03 AC 228 ms
155,844 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,168 KB
testcase_06 AC 38 ms
53,052 KB
testcase_07 AC 45 ms
60,688 KB
testcase_08 AC 47 ms
61,068 KB
testcase_09 AC 44 ms
59,476 KB
testcase_10 AC 45 ms
60,452 KB
testcase_11 AC 44 ms
59,844 KB
testcase_12 AC 45 ms
60,548 KB
testcase_13 WA -
testcase_14 AC 43 ms
59,356 KB
testcase_15 AC 45 ms
60,612 KB
testcase_16 AC 45 ms
60,052 KB
testcase_17 AC 44 ms
61,256 KB
testcase_18 AC 44 ms
60,220 KB
testcase_19 AC 46 ms
61,784 KB
testcase_20 WA -
testcase_21 AC 46 ms
61,276 KB
testcase_22 AC 46 ms
60,620 KB
testcase_23 AC 45 ms
59,612 KB
testcase_24 AC 110 ms
90,440 KB
testcase_25 AC 208 ms
135,656 KB
testcase_26 AC 85 ms
87,452 KB
testcase_27 AC 106 ms
89,848 KB
testcase_28 AC 111 ms
89,828 KB
testcase_29 AC 94 ms
89,400 KB
testcase_30 AC 61 ms
71,864 KB
testcase_31 AC 206 ms
135,604 KB
testcase_32 AC 63 ms
73,144 KB
testcase_33 AC 155 ms
112,888 KB
testcase_34 AC 185 ms
132,192 KB
testcase_35 AC 187 ms
133,024 KB
testcase_36 AC 97 ms
89,436 KB
testcase_37 AC 109 ms
89,684 KB
testcase_38 AC 187 ms
134,108 KB
testcase_39 AC 117 ms
89,988 KB
testcase_40 AC 204 ms
135,500 KB
testcase_41 AC 198 ms
135,596 KB
testcase_42 AC 164 ms
112,276 KB
testcase_43 AC 114 ms
89,636 KB
testcase_44 AC 38 ms
52,996 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	import sys
	input = sys.stdin.readline
	n, k = map(int, input().split())
	a = list(map(int, input().split()))
	dp = [[0] * (k + 1) for _ in range(n + 1)]
	dp[0][0] = 1
	for i in range(n):
		for j in range(k + 1):
			if j - a[i] >= 0: dp[i + 1][j] |= dp[i][j - a[i]]
			dp[i + 1][j] |= dp[i][j]
	if not dp[n][k]: exit(print(-1))
	now = (n, k)
	l1 = []
	while now != (0, 0):
		cn, ck = now
		if 0 <= cn - 1 <= n and 0 <= ck - a[cn - 1] <= k and dp[cn - 1][ck - a[cn - 1]]:
			l1.append(cn - 1)
			now = (cn - 1, ck - a[cn - 1])
		else:
			now = (cn - 1, ck)
	l2 = []
	now = (n, k)
	while now != (0, 0):
		cn, ck = now
		if 0 <= cn - 1 <= n and dp[cn - 1][ck]:
			now = (cn - 1, ck)
		else:
			l2.append(cn - 1)
			now = (cn - 1, ck - a[cn - 1])
	print(len(set(l1) & set(l2)))
if __name__ == '__main__':
	main()
	
0