結果

問題 No.941 商とあまり
ユーザー QCFiumQCFium
提出日時 2019-09-15 18:33:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,044 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 316,280 KB
最終ジャッジ日時 2024-11-21 04:56:51
合計ジャッジ時間 130,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 41 ms
59,520 KB
testcase_02 AC 38 ms
316,280 KB
testcase_03 AC 40 ms
59,520 KB
testcase_04 AC 37 ms
314,752 KB
testcase_05 AC 38 ms
58,368 KB
testcase_06 AC 38 ms
311,912 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 37 ms
59,392 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 38 ms
59,008 KB
testcase_18 AC 38 ms
314,348 KB
testcase_19 AC 39 ms
58,752 KB
testcase_20 AC 37 ms
313,344 KB
testcase_21 AC 37 ms
58,880 KB
testcase_22 AC 36 ms
273,412 KB
testcase_23 AC 37 ms
57,216 KB
testcase_24 AC 37 ms
247,268 KB
testcase_25 AC 36 ms
57,344 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 38 ms
58,368 KB
testcase_34 AC 39 ms
316,088 KB
testcase_35 AC 38 ms
58,624 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 38 ms
58,880 KB
testcase_40 AC 36 ms
314,692 KB
testcase_41 AC 38 ms
58,496 KB
testcase_42 AC 41 ms
312,932 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 36 ms
311,748 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 37 ms
59,136 KB
testcase_58 AC 37 ms
315,388 KB
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 38 ms
59,264 KB
testcase_63 AC 38 ms
315,576 KB
testcase_64 AC 39 ms
59,264 KB
testcase_65 AC 38 ms
315,340 KB
testcase_66 TLE -
testcase_67 AC 39 ms
315,520 KB
testcase_68 TLE -
testcase_69 AC 39 ms
54,016 KB
testcase_70 AC 38 ms
53,504 KB
testcase_71 TLE -
testcase_72 TLE -
testcase_73 AC 38 ms
53,504 KB
testcase_74 AC 38 ms
53,888 KB
testcase_75 AC 37 ms
53,376 KB
testcase_76 AC 38 ms
53,504 KB
testcase_77 AC 39 ms
53,504 KB
testcase_78 AC 38 ms
53,504 KB
testcase_79 AC 38 ms
53,504 KB
testcase_80 AC 38 ms
53,376 KB
testcase_81 AC 42 ms
53,504 KB
testcase_82 AC 38 ms
53,376 KB
testcase_83 AC 39 ms
53,760 KB
testcase_84 AC 39 ms
53,888 KB
testcase_85 AC 39 ms
53,504 KB
testcase_86 AC 38 ms
53,760 KB
testcase_87 AC 38 ms
53,504 KB
testcase_88 AC 38 ms
54,136 KB
testcase_89 AC 38 ms
53,504 KB
testcase_90 AC 41 ms
53,504 KB
testcase_91 AC 42 ms
53,632 KB
testcase_92 AC 39 ms
53,504 KB
testcase_93 AC 41 ms
53,376 KB
testcase_94 AC 38 ms
53,760 KB
testcase_95 AC 38 ms
53,632 KB
testcase_96 AC 39 ms
53,760 KB
testcase_97 AC 39 ms
53,504 KB
testcase_98 AC 39 ms
53,504 KB
testcase_99 AC 39 ms
53,888 KB
testcase_100 AC 38 ms
53,632 KB
testcase_101 AC 37 ms
53,120 KB
testcase_102 AC 36 ms
53,632 KB
testcase_103 AC 37 ms
53,888 KB
testcase_104 AC 37 ms
51,840 KB
testcase_105 AC 37 ms
52,736 KB
testcase_106 AC 37 ms
51,968 KB
testcase_107 AC 36 ms
52,096 KB
testcase_108 AC 36 ms
52,096 KB
testcase_109 AC 36 ms
313,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def solve(n, x, a) :
	if n == 1 :
		s = '0' * x
		if a[0] <= x : s = s[:a[0]-1] + '1' + s[a[0]:]
		return s
	a.sort()
	prod = 1
	for i in range(n) :
		prod *= a[i] + 1
		if prod > x + 1 : return '0' * x
	if 1 in a :
		return '0' * (prod - 2) + '1' * (x - prod + 2)
	size = [(x + 1) // (3 ** (n - i)) for i in range(n + 1)]
	dp = [[False] * (size[bin(i).count("1")]) for i in range(1 << n)]
	for i in range(n) : dp[2 ** i][a[i]] = True
	for i in range(1 << n) :
		cur_sz = len(dp[i])
		for j in range(n) :
			if i >> j & 1 : continue
			tmp = [False for i in range(len(dp[i | 1 << j]))]
			for k in range(cur_sz) :
				target = (k + 1) * (a[j] + 1) - 1
				if dp[i][k] and target < len(tmp) : tmp[target] = True
			for k in range(len(tmp) - a[j]) :
				if tmp[k] : tmp[k + a[j]] = True
			for k in range(len(tmp)) :
				if tmp[k] : dp[i | 1 << j][k] = True

	res = ''
	for i in range(x) : res += '1' if dp[(1 << n) - 1][i + 1] else '0';
	return res


n, x = map(int, input().split())
a = list(map(int, input().split()))
print(solve(n, x, a))

0