結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー donutholedonuthole
提出日時 2021-01-22 22:38:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-08 16:20:33
合計ジャッジ時間 8,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,888 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 45 ms
54,016 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 43 ms
54,400 KB
testcase_07 AC 45 ms
54,144 KB
testcase_08 AC 43 ms
53,888 KB
testcase_09 AC 43 ms
54,256 KB
testcase_10 AC 43 ms
54,108 KB
testcase_11 AC 43 ms
53,760 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 43 ms
54,528 KB
testcase_14 AC 51 ms
62,592 KB
testcase_15 AC 53 ms
62,464 KB
testcase_16 AC 46 ms
54,528 KB
testcase_17 AC 50 ms
62,336 KB
testcase_18 AC 45 ms
53,888 KB
testcase_19 AC 57 ms
62,976 KB
testcase_20 AC 53 ms
62,080 KB
testcase_21 AC 43 ms
53,760 KB
testcase_22 AC 55 ms
62,848 KB
testcase_23 AC 77 ms
76,032 KB
testcase_24 AC 97 ms
76,032 KB
testcase_25 AC 207 ms
75,904 KB
testcase_26 AC 59 ms
66,304 KB
testcase_27 AC 55 ms
65,280 KB
testcase_28 AC 207 ms
76,032 KB
testcase_29 AC 69 ms
76,288 KB
testcase_30 AC 77 ms
75,904 KB
testcase_31 AC 77 ms
76,288 KB
testcase_32 AC 62 ms
71,680 KB
testcase_33 AC 207 ms
76,260 KB
testcase_34 AC 204 ms
75,904 KB
testcase_35 AC 205 ms
76,032 KB
testcase_36 AC 211 ms
76,160 KB
testcase_37 AC 209 ms
76,396 KB
testcase_38 AC 206 ms
75,904 KB
testcase_39 AC 206 ms
76,032 KB
testcase_40 AC 206 ms
76,144 KB
testcase_41 AC 204 ms
76,032 KB
testcase_42 AC 206 ms
76,032 KB
testcase_43 AC 43 ms
54,016 KB
testcase_44 AC 205 ms
76,416 KB
testcase_45 AC 43 ms
54,016 KB
testcase_46 AC 205 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import collections


# sys.setrecursionlimit(10000001)
INF = 10 ** 20
# MOD = 10 ** 9 + 7
MOD = 998244353


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))
def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()))


# ===CODE===
def main():
    n = ni()
    a = na()
    b = [na() for _ in range(n)]

    lim = pow(2, n)
    ans = -INF
    ansc = []
    for i in range(lim):
        v = i
        res = 0
        used = []
        for j in range(n):
            if v >> j & 1:
                res += a[j]
                for ui in used:
                    res += b[j][ui]
                used.append(j)
        if ans < res and len(used) > 0:
            ans = max(ans, res)
            ansc = used
    for i in range(len(ansc)):
        ansc[i] += 1
    print(ans)
    print(*ansc)


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