結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー rlangevinrlangevin
提出日時 2024-07-17 12:13:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 76,324 KB
最終ジャッジ日時 2024-07-17 12:13:32
合計ジャッジ時間 11,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,616 KB
testcase_01 AC 38 ms
51,992 KB
testcase_02 AC 37 ms
52,752 KB
testcase_03 AC 36 ms
53,088 KB
testcase_04 AC 37 ms
52,648 KB
testcase_05 AC 36 ms
52,432 KB
testcase_06 AC 37 ms
54,036 KB
testcase_07 AC 38 ms
52,152 KB
testcase_08 AC 38 ms
52,796 KB
testcase_09 AC 37 ms
52,636 KB
testcase_10 AC 37 ms
53,228 KB
testcase_11 AC 37 ms
52,016 KB
testcase_12 AC 38 ms
53,428 KB
testcase_13 AC 38 ms
52,536 KB
testcase_14 AC 47 ms
61,980 KB
testcase_15 AC 47 ms
62,808 KB
testcase_16 AC 42 ms
57,968 KB
testcase_17 AC 47 ms
62,220 KB
testcase_18 AC 37 ms
52,236 KB
testcase_19 AC 50 ms
64,400 KB
testcase_20 AC 46 ms
61,704 KB
testcase_21 AC 38 ms
52,216 KB
testcase_22 AC 50 ms
64,500 KB
testcase_23 AC 78 ms
75,660 KB
testcase_24 AC 103 ms
75,888 KB
testcase_25 AC 448 ms
75,792 KB
testcase_26 AC 53 ms
65,680 KB
testcase_27 AC 56 ms
66,796 KB
testcase_28 AC 419 ms
75,880 KB
testcase_29 AC 61 ms
70,252 KB
testcase_30 AC 78 ms
75,984 KB
testcase_31 AC 78 ms
75,288 KB
testcase_32 AC 55 ms
67,028 KB
testcase_33 AC 422 ms
75,708 KB
testcase_34 AC 422 ms
75,568 KB
testcase_35 AC 419 ms
75,548 KB
testcase_36 AC 420 ms
76,076 KB
testcase_37 AC 447 ms
75,860 KB
testcase_38 AC 421 ms
76,324 KB
testcase_39 AC 423 ms
75,548 KB
testcase_40 AC 420 ms
75,284 KB
testcase_41 AC 420 ms
75,476 KB
testcase_42 AC 447 ms
75,836 KB
testcase_43 AC 37 ms
53,152 KB
testcase_44 AC 403 ms
75,764 KB
testcase_45 AC 37 ms
52,376 KB
testcase_46 AC 445 ms
75,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
B = []
for i in range(N):
    B.append(list(map(int, input().split())))
    
ma = -10 ** 18
n = 0
for s in range(1, 1 << N):
    v = 0
    for i in range(N):
        if (s >> i) & 1:
            v += A[i]
        else:
            continue
        for j in range(i + 1, N):
            if (s >> j) & 1:
                v += B[i][j]
    if v > ma:
        ma = v
        n = s
        
ans = []
for i in range(N):
    if (n >> i) & 1:
        ans.append(i + 1)
        
print(ma)
print(*ans)
0