結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー mkawa2mkawa2
提出日時 2021-01-22 23:42:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 79,384 KB
最終ジャッジ日時 2024-06-08 18:56:31
合計ジャッジ時間 9,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,592 KB
testcase_01 AC 37 ms
53,084 KB
testcase_02 AC 38 ms
52,668 KB
testcase_03 AC 38 ms
53,684 KB
testcase_04 AC 39 ms
52,132 KB
testcase_05 AC 34 ms
52,680 KB
testcase_06 AC 36 ms
52,992 KB
testcase_07 AC 37 ms
53,620 KB
testcase_08 AC 40 ms
52,944 KB
testcase_09 AC 37 ms
53,408 KB
testcase_10 AC 38 ms
52,740 KB
testcase_11 AC 36 ms
53,536 KB
testcase_12 AC 38 ms
52,356 KB
testcase_13 AC 39 ms
53,252 KB
testcase_14 AC 44 ms
60,800 KB
testcase_15 AC 46 ms
59,740 KB
testcase_16 AC 39 ms
52,620 KB
testcase_17 AC 46 ms
60,492 KB
testcase_18 AC 39 ms
53,292 KB
testcase_19 AC 55 ms
63,812 KB
testcase_20 AC 45 ms
60,252 KB
testcase_21 AC 39 ms
52,272 KB
testcase_22 AC 54 ms
64,752 KB
testcase_23 AC 109 ms
76,620 KB
testcase_24 AC 130 ms
76,692 KB
testcase_25 AC 255 ms
79,236 KB
testcase_26 AC 76 ms
76,172 KB
testcase_27 AC 76 ms
76,232 KB
testcase_28 AC 267 ms
78,516 KB
testcase_29 AC 89 ms
76,364 KB
testcase_30 AC 95 ms
76,544 KB
testcase_31 AC 96 ms
76,612 KB
testcase_32 AC 91 ms
76,448 KB
testcase_33 AC 268 ms
78,520 KB
testcase_34 AC 265 ms
78,984 KB
testcase_35 AC 266 ms
78,740 KB
testcase_36 AC 262 ms
79,040 KB
testcase_37 AC 272 ms
78,464 KB
testcase_38 AC 257 ms
78,664 KB
testcase_39 AC 265 ms
78,396 KB
testcase_40 AC 267 ms
78,780 KB
testcase_41 AC 253 ms
79,016 KB
testcase_42 AC 257 ms
78,968 KB
testcase_43 AC 37 ms
52,548 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**19
# md = 998244353
md = 10**9+7

n = II()
aa = LI()
bb = LLI(n)

btos = [0]*(1 << n)
for i in range(n):
    for j in range(i):
        bit = 1 << i | 1 << j
        cur = bb[i][j]
        s = bit
        while s < (1 << n):
            btos[s] += cur
            s = (s+1) | bit

mx = -inf
ans = 0
for bit in range(1 << n):
    cur = sum(aa[i] for i in range(n) if bit >> i & 1)+btos[bit]
    if cur > mx:
        mx = cur
        ans = bit

print(mx)
print(" ".join(str(i+1) for i in range(n) if ans >> i & 1))
0