結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー donutholedonuthole
提出日時 2021-01-22 22:36:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 990 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-08 16:16:36
合計ジャッジ時間 8,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 44 ms
54,016 KB
testcase_10 AC 43 ms
54,272 KB
testcase_11 AC 42 ms
54,144 KB
testcase_12 AC 42 ms
54,144 KB
testcase_13 AC 41 ms
53,888 KB
testcase_14 AC 50 ms
62,464 KB
testcase_15 AC 51 ms
62,464 KB
testcase_16 AC 43 ms
54,528 KB
testcase_17 AC 50 ms
62,208 KB
testcase_18 AC 42 ms
54,272 KB
testcase_19 AC 51 ms
63,104 KB
testcase_20 AC 50 ms
62,336 KB
testcase_21 AC 42 ms
53,888 KB
testcase_22 AC 52 ms
63,232 KB
testcase_23 AC 72 ms
76,412 KB
testcase_24 AC 97 ms
76,160 KB
testcase_25 AC 205 ms
76,160 KB
testcase_26 AC 59 ms
66,688 KB
testcase_27 AC 60 ms
65,408 KB
testcase_28 AC 206 ms
76,160 KB
testcase_29 AC 66 ms
76,032 KB
testcase_30 AC 74 ms
76,032 KB
testcase_31 AC 80 ms
76,416 KB
testcase_32 AC 64 ms
71,808 KB
testcase_33 AC 205 ms
76,544 KB
testcase_34 AC 202 ms
76,544 KB
testcase_35 AC 204 ms
76,476 KB
testcase_36 AC 202 ms
76,032 KB
testcase_37 AC 204 ms
76,032 KB
testcase_38 AC 203 ms
76,268 KB
testcase_39 AC 203 ms
76,332 KB
testcase_40 AC 201 ms
76,032 KB
testcase_41 AC 203 ms
76,408 KB
testcase_42 AC 202 ms
76,032 KB
testcase_43 AC 41 ms
53,760 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
            ans = max(ans, res)
            ansc = used
    for i in range(len(ansc)):
        ansc[i] += 1
    print(ans)
    print(*ansc)


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