結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー c-yanc-yan
提出日時 2021-01-22 21:41:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,524 KB
最終ジャッジ日時 2024-06-08 13:58:14
合計ジャッジ時間 12,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,960 KB
testcase_01 AC 39 ms
52,052 KB
testcase_02 AC 39 ms
52,032 KB
testcase_03 AC 40 ms
51,940 KB
testcase_04 AC 39 ms
52,452 KB
testcase_05 AC 39 ms
52,168 KB
testcase_06 AC 40 ms
52,200 KB
testcase_07 AC 39 ms
52,308 KB
testcase_08 AC 40 ms
52,160 KB
testcase_09 AC 40 ms
51,916 KB
testcase_10 AC 40 ms
51,832 KB
testcase_11 AC 40 ms
52,208 KB
testcase_12 AC 40 ms
52,312 KB
testcase_13 AC 40 ms
52,516 KB
testcase_14 AC 54 ms
62,000 KB
testcase_15 AC 54 ms
62,080 KB
testcase_16 AC 49 ms
60,968 KB
testcase_17 AC 53 ms
62,464 KB
testcase_18 AC 41 ms
52,464 KB
testcase_19 AC 58 ms
63,572 KB
testcase_20 AC 53 ms
61,952 KB
testcase_21 AC 41 ms
52,840 KB
testcase_22 AC 56 ms
64,148 KB
testcase_23 AC 126 ms
75,904 KB
testcase_24 AC 155 ms
75,848 KB
testcase_25 AC 504 ms
75,996 KB
testcase_26 AC 61 ms
66,792 KB
testcase_27 AC 59 ms
65,284 KB
testcase_28 AC 505 ms
75,748 KB
testcase_29 AC 83 ms
76,160 KB
testcase_30 AC 124 ms
75,968 KB
testcase_31 AC 126 ms
75,904 KB
testcase_32 AC 65 ms
70,164 KB
testcase_33 AC 510 ms
75,904 KB
testcase_34 AC 504 ms
75,852 KB
testcase_35 AC 573 ms
76,032 KB
testcase_36 AC 503 ms
75,864 KB
testcase_37 AC 573 ms
75,904 KB
testcase_38 AC 503 ms
76,208 KB
testcase_39 AC 504 ms
76,148 KB
testcase_40 AC 507 ms
75,760 KB
testcase_41 AC 503 ms
76,016 KB
testcase_42 AC 511 ms
75,572 KB
testcase_43 AC 40 ms
51,968 KB
testcase_44 AC 493 ms
75,444 KB
testcase_45 AC 40 ms
51,968 KB
testcase_46 AC 500 ms
76,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

N = int(input())
A = list(map(int, input().split()))
B = [list(map(int, input().split())) for _ in range(N)]

result = -(10 ** 18)
for t in product(range(2), repeat=N):
    v = 0
    n = 0
    for i in range(N):
        n += t[i]
        if t[i] == 1:
            v += A[i]
    if n == 0:
        continue
    for i in range(N):
        for j in range(i + 1, N):
            if t[i] & t[j] == 1:
                v += B[i][j]
    if v > result:
        result = v
        max_t = t
print(result)
print(*(i + 1 for i in range(N) if max_t[i] == 1))
0