結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー neterukunneterukun
提出日時 2021-01-22 21:32:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-08 13:25:54
合計ジャッジ時間 12,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,200 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 41 ms
51,456 KB
testcase_08 AC 40 ms
51,584 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 46 ms
57,600 KB
testcase_14 AC 53 ms
61,056 KB
testcase_15 AC 53 ms
60,928 KB
testcase_16 AC 50 ms
59,776 KB
testcase_17 AC 54 ms
61,440 KB
testcase_18 AC 45 ms
57,600 KB
testcase_19 AC 54 ms
61,184 KB
testcase_20 AC 54 ms
60,800 KB
testcase_21 AC 45 ms
57,728 KB
testcase_22 AC 54 ms
61,184 KB
testcase_23 AC 103 ms
75,648 KB
testcase_24 AC 207 ms
75,520 KB
testcase_25 AC 484 ms
75,392 KB
testcase_26 AC 58 ms
62,720 KB
testcase_27 AC 60 ms
63,232 KB
testcase_28 AC 445 ms
75,776 KB
testcase_29 AC 77 ms
68,992 KB
testcase_30 AC 102 ms
75,392 KB
testcase_31 AC 102 ms
75,776 KB
testcase_32 AC 63 ms
64,384 KB
testcase_33 AC 456 ms
75,648 KB
testcase_34 AC 449 ms
75,648 KB
testcase_35 AC 448 ms
75,648 KB
testcase_36 AC 459 ms
75,136 KB
testcase_37 AC 457 ms
75,648 KB
testcase_38 AC 467 ms
75,392 KB
testcase_39 AC 456 ms
75,136 KB
testcase_40 AC 456 ms
75,136 KB
testcase_41 AC 456 ms
75,264 KB
testcase_42 AC 456 ms
75,136 KB
testcase_43 AC 40 ms
51,456 KB
testcase_44 AC 422 ms
75,520 KB
testcase_45 AC 39 ms
51,584 KB
testcase_46 AC 447 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = [list(map(int, input().split())) for i in range(n)]


ans = 0
bit = 0
for bit_state in range(1 << n):
    score = 0
    tmp = 0
    for i in range(n):
        if (bit_state >> i) & 1:
            score += a[i]
            for j in range(n):
                if (bit_state >> j) & 1:
                    tmp += b[i][j]
    score += tmp // 2
    if score >= ans:
        ans = max(ans, score)
        bit = bit_state

res = []
for i in range(n):
    if (bit >> i) & 1:
        res.append(i + 1)
print(ans)
print(*res)
0