結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー H3PO4H3PO4
提出日時 2021-01-22 21:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 740 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-06-08 13:59:21
合計ジャッジ時間 15,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 34 ms
52,096 KB
testcase_12 AC 36 ms
52,480 KB
testcase_13 AC 35 ms
52,224 KB
testcase_14 AC 41 ms
58,496 KB
testcase_15 AC 43 ms
58,496 KB
testcase_16 AC 37 ms
52,488 KB
testcase_17 AC 40 ms
58,624 KB
testcase_18 AC 36 ms
51,968 KB
testcase_19 AC 46 ms
61,952 KB
testcase_20 AC 40 ms
58,368 KB
testcase_21 AC 35 ms
51,840 KB
testcase_22 AC 47 ms
61,824 KB
testcase_23 AC 125 ms
76,204 KB
testcase_24 AC 204 ms
76,032 KB
testcase_25 AC 718 ms
75,940 KB
testcase_26 AC 58 ms
70,400 KB
testcase_27 AC 52 ms
65,536 KB
testcase_28 AC 709 ms
76,032 KB
testcase_29 AC 89 ms
75,948 KB
testcase_30 AC 126 ms
76,032 KB
testcase_31 AC 124 ms
75,904 KB
testcase_32 AC 71 ms
76,160 KB
testcase_33 AC 720 ms
75,956 KB
testcase_34 AC 711 ms
75,776 KB
testcase_35 AC 708 ms
75,948 KB
testcase_36 AC 718 ms
75,956 KB
testcase_37 AC 718 ms
75,776 KB
testcase_38 AC 709 ms
75,904 KB
testcase_39 AC 700 ms
76,032 KB
testcase_40 AC 711 ms
76,264 KB
testcase_41 AC 740 ms
76,288 KB
testcase_42 AC 712 ms
76,288 KB
testcase_43 AC 35 ms
51,584 KB
testcase_44 AC 719 ms
76,160 KB
testcase_45 AC 34 ms
51,968 KB
testcase_46 AC 715 ms
75,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

w = -float('inf')

it = itertools.product((0, 1), repeat=N)
next(it)
for t in it:
    tmp = 0
    comp = list(itertools.compress(range(N), t))
    for x in comp:
        tmp += A[x]
    for x, y in itertools.combinations(comp, 2):
        tmp += B[x][y]
    if w < tmp:
        J = tuple(x + 1 for x in comp)
        w = tmp
print(w)
print(*J)
0