結果

問題 No.519 アイドルユニット
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-29 22:52:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 203,520 KB
最終ジャッジ日時 2024-10-03 03:56:09
合計ジャッジ時間 4,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
203,248 KB
testcase_01 AC 238 ms
203,136 KB
testcase_02 AC 113 ms
99,888 KB
testcase_03 AC 62 ms
66,688 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 50 ms
60,544 KB
testcase_09 AC 57 ms
64,384 KB
testcase_10 AC 61 ms
65,792 KB
testcase_11 AC 63 ms
66,816 KB
testcase_12 AC 39 ms
51,456 KB
testcase_13 AC 62 ms
66,560 KB
testcase_14 AC 63 ms
66,560 KB
testcase_15 AC 62 ms
66,816 KB
testcase_16 AC 61 ms
66,560 KB
testcase_17 AC 62 ms
66,560 KB
testcase_18 AC 63 ms
66,816 KB
testcase_19 AC 62 ms
66,304 KB
testcase_20 AC 63 ms
66,944 KB
testcase_21 AC 62 ms
66,560 KB
testcase_22 AC 61 ms
67,072 KB
testcase_23 AC 62 ms
66,688 KB
testcase_24 AC 76 ms
73,984 KB
testcase_25 AC 79 ms
74,112 KB
testcase_26 AC 79 ms
73,984 KB
testcase_27 AC 80 ms
73,856 KB
testcase_28 AC 73 ms
73,984 KB
testcase_29 AC 260 ms
203,136 KB
testcase_30 AC 264 ms
203,136 KB
testcase_31 AC 269 ms
203,264 KB
testcase_32 AC 264 ms
203,520 KB
testcase_33 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
f = [[int(j) for j in input().split()] for i in range(N)]
dp = [-1] * (1 << N)

dp[0] = 0
for i in range(1 << N):
	if dp[i] < 0:
		continue
	index = -1
	for j in range(N):
		if not i>>j&1:
			index = j
			break
	if index == -1:
		continue
	for k in range(N):
		if index == k or i>>k&1:
			continue
		dp[i | 1 << index | 1 << k] = max(dp[i | 1 << index | 1 << k],dp[i] + f[index][k])
print(dp[(1 << N) - 1])
0