結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ああいいああいい
提出日時 2022-05-13 17:57:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 78,504 KB
最終ジャッジ日時 2024-07-21 20:09:43
合計ジャッジ時間 11,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,124 KB
testcase_01 AC 38 ms
52,548 KB
testcase_02 AC 39 ms
52,288 KB
testcase_03 AC 40 ms
51,944 KB
testcase_04 AC 39 ms
53,484 KB
testcase_05 AC 39 ms
52,904 KB
testcase_06 AC 38 ms
52,816 KB
testcase_07 AC 38 ms
52,000 KB
testcase_08 AC 41 ms
53,424 KB
testcase_09 AC 39 ms
53,484 KB
testcase_10 AC 39 ms
52,276 KB
testcase_11 AC 40 ms
53,564 KB
testcase_12 AC 39 ms
53,148 KB
testcase_13 AC 39 ms
52,776 KB
testcase_14 AC 50 ms
63,652 KB
testcase_15 AC 49 ms
62,488 KB
testcase_16 AC 43 ms
58,812 KB
testcase_17 AC 50 ms
62,928 KB
testcase_18 AC 40 ms
52,468 KB
testcase_19 AC 52 ms
63,668 KB
testcase_20 AC 48 ms
62,564 KB
testcase_21 AC 39 ms
53,912 KB
testcase_22 AC 53 ms
64,084 KB
testcase_23 AC 80 ms
76,084 KB
testcase_24 AC 104 ms
76,100 KB
testcase_25 AC 401 ms
77,836 KB
testcase_26 AC 55 ms
66,596 KB
testcase_27 AC 59 ms
68,596 KB
testcase_28 AC 404 ms
77,920 KB
testcase_29 AC 64 ms
70,680 KB
testcase_30 AC 80 ms
76,340 KB
testcase_31 AC 80 ms
76,124 KB
testcase_32 AC 57 ms
67,572 KB
testcase_33 AC 405 ms
77,700 KB
testcase_34 AC 414 ms
78,064 KB
testcase_35 AC 403 ms
77,928 KB
testcase_36 AC 405 ms
77,832 KB
testcase_37 AC 407 ms
78,028 KB
testcase_38 AC 408 ms
77,872 KB
testcase_39 AC 409 ms
77,700 KB
testcase_40 AC 404 ms
77,840 KB
testcase_41 AC 400 ms
78,504 KB
testcase_42 AC 403 ms
77,916 KB
testcase_43 AC 38 ms
52,256 KB
testcase_44 AC 406 ms
77,676 KB
testcase_45 AC 39 ms
52,824 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
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