結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ああいいああいい
提出日時 2022-05-13 17:58:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 78,200 KB
最終ジャッジ日時 2024-07-21 20:11:02
合計ジャッジ時間 11,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,156 KB
testcase_01 AC 39 ms
52,272 KB
testcase_02 AC 37 ms
51,884 KB
testcase_03 AC 38 ms
52,484 KB
testcase_04 AC 37 ms
52,932 KB
testcase_05 AC 39 ms
52,908 KB
testcase_06 AC 38 ms
52,404 KB
testcase_07 AC 38 ms
52,260 KB
testcase_08 AC 39 ms
52,404 KB
testcase_09 AC 38 ms
54,040 KB
testcase_10 AC 38 ms
53,392 KB
testcase_11 AC 38 ms
53,132 KB
testcase_12 AC 38 ms
53,136 KB
testcase_13 AC 39 ms
52,532 KB
testcase_14 AC 50 ms
61,824 KB
testcase_15 AC 48 ms
62,348 KB
testcase_16 AC 43 ms
58,816 KB
testcase_17 AC 49 ms
62,676 KB
testcase_18 AC 38 ms
53,352 KB
testcase_19 AC 51 ms
63,600 KB
testcase_20 AC 49 ms
62,808 KB
testcase_21 AC 39 ms
52,728 KB
testcase_22 AC 52 ms
63,492 KB
testcase_23 AC 79 ms
76,208 KB
testcase_24 AC 102 ms
76,400 KB
testcase_25 AC 411 ms
78,116 KB
testcase_26 AC 55 ms
65,392 KB
testcase_27 AC 58 ms
68,156 KB
testcase_28 AC 402 ms
78,112 KB
testcase_29 AC 62 ms
70,492 KB
testcase_30 AC 78 ms
75,980 KB
testcase_31 AC 78 ms
76,180 KB
testcase_32 AC 57 ms
67,484 KB
testcase_33 AC 402 ms
78,104 KB
testcase_34 AC 412 ms
77,828 KB
testcase_35 AC 407 ms
77,804 KB
testcase_36 AC 412 ms
77,952 KB
testcase_37 AC 406 ms
77,768 KB
testcase_38 AC 402 ms
78,180 KB
testcase_39 AC 401 ms
77,828 KB
testcase_40 AC 402 ms
78,156 KB
testcase_41 AC 406 ms
78,008 KB
testcase_42 AC 400 ms
77,996 KB
testcase_43 AC 39 ms
53,356 KB
testcase_44 AC 402 ms
77,816 KB
testcase_45 AC 38 ms
53,384 KB
testcase_46 AC 405 ms
78,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = -1
S = -1
dp = [0] * (1 << N)
for bit in range(1,1 << N):
    tmp = 0
    for i in range(N):
        if (bit >> i) & 1:
            tmp += A[i]
            for j in range(i + 1,N):
                if (bit >> j) & 1:
                    tmp += B[i][j]
    if tmp > ans:
        ans = tmp
        S = bit
    #print(bit,tmp)
print(ans)
l = []
for i in range(N):
    if (S >> i) & 1:
        l.append(i + 1)
print(*l)
                    
0