結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー convexineqconvexineq
提出日時 2021-01-23 10:33:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 76,244 KB
最終ジャッジ日時 2024-06-09 14:32:47
合計ジャッジ時間 10,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,680 KB
testcase_01 AC 31 ms
52,992 KB
testcase_02 AC 33 ms
52,404 KB
testcase_03 AC 33 ms
53,208 KB
testcase_04 AC 32 ms
53,204 KB
testcase_05 AC 31 ms
53,044 KB
testcase_06 AC 32 ms
53,092 KB
testcase_07 AC 33 ms
53,288 KB
testcase_08 AC 32 ms
52,836 KB
testcase_09 AC 31 ms
52,380 KB
testcase_10 AC 30 ms
52,768 KB
testcase_11 AC 33 ms
52,760 KB
testcase_12 AC 35 ms
53,228 KB
testcase_13 AC 34 ms
52,464 KB
testcase_14 AC 43 ms
62,804 KB
testcase_15 AC 41 ms
62,344 KB
testcase_16 AC 36 ms
59,016 KB
testcase_17 AC 43 ms
62,656 KB
testcase_18 AC 33 ms
52,752 KB
testcase_19 AC 44 ms
65,032 KB
testcase_20 AC 41 ms
62,748 KB
testcase_21 AC 33 ms
52,884 KB
testcase_22 AC 44 ms
64,296 KB
testcase_23 AC 70 ms
76,140 KB
testcase_24 AC 95 ms
76,236 KB
testcase_25 AC 364 ms
76,064 KB
testcase_26 AC 46 ms
66,444 KB
testcase_27 AC 50 ms
67,096 KB
testcase_28 AC 367 ms
75,952 KB
testcase_29 AC 55 ms
70,772 KB
testcase_30 AC 74 ms
75,996 KB
testcase_31 AC 73 ms
75,676 KB
testcase_32 AC 48 ms
67,868 KB
testcase_33 AC 372 ms
75,924 KB
testcase_34 AC 378 ms
75,872 KB
testcase_35 AC 363 ms
75,960 KB
testcase_36 AC 372 ms
75,980 KB
testcase_37 AC 362 ms
75,768 KB
testcase_38 AC 362 ms
75,668 KB
testcase_39 AC 363 ms
75,932 KB
testcase_40 AC 370 ms
75,992 KB
testcase_41 AC 359 ms
76,244 KB
testcase_42 AC 357 ms
76,040 KB
testcase_43 AC 31 ms
53,256 KB
testcase_44 AC 364 ms
76,168 KB
testcase_45 AC 33 ms
54,084 KB
testcase_46 AC 357 ms
76,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
b = [list(map(int,input().split())) for _ in range(n)]
ans = 0
val = -1<<50
N = 1<<n
for mask in range(1,N):
    v = 0
    for i in range(n):
        if mask>>i&1==0: continue
        v += a[i]
        for j in range(i+1,n):
            if mask>>j&1:
                v += b[i][j]
    if v > val:
        val = v
        ans = mask
print(val)
print(*(i+1 for i in range(n) if ans>>i&1))
0