結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー convexineqconvexineq
提出日時 2021-01-23 10:31:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 76,192 KB
最終ジャッジ日時 2024-06-09 14:29:28
合計ジャッジ時間 10,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,612 KB
testcase_01 AC 33 ms
53,380 KB
testcase_02 AC 32 ms
53,092 KB
testcase_03 AC 32 ms
52,812 KB
testcase_04 AC 33 ms
52,336 KB
testcase_05 AC 33 ms
53,224 KB
testcase_06 AC 34 ms
53,352 KB
testcase_07 AC 34 ms
52,004 KB
testcase_08 AC 32 ms
53,132 KB
testcase_09 AC 32 ms
52,312 KB
testcase_10 AC 35 ms
52,744 KB
testcase_11 AC 33 ms
52,948 KB
testcase_12 AC 33 ms
52,420 KB
testcase_13 AC 33 ms
53,760 KB
testcase_14 AC 43 ms
62,736 KB
testcase_15 AC 42 ms
62,624 KB
testcase_16 AC 37 ms
59,104 KB
testcase_17 AC 42 ms
62,248 KB
testcase_18 AC 34 ms
52,852 KB
testcase_19 AC 41 ms
63,164 KB
testcase_20 AC 41 ms
62,336 KB
testcase_21 AC 33 ms
53,164 KB
testcase_22 AC 43 ms
63,152 KB
testcase_23 AC 69 ms
75,600 KB
testcase_24 AC 91 ms
75,940 KB
testcase_25 AC 361 ms
76,008 KB
testcase_26 AC 50 ms
66,008 KB
testcase_27 AC 49 ms
66,988 KB
testcase_28 AC 361 ms
75,720 KB
testcase_29 AC 53 ms
71,364 KB
testcase_30 AC 67 ms
75,812 KB
testcase_31 AC 71 ms
75,624 KB
testcase_32 AC 52 ms
67,764 KB
testcase_33 AC 361 ms
76,092 KB
testcase_34 AC 359 ms
76,192 KB
testcase_35 AC 358 ms
76,112 KB
testcase_36 AC 368 ms
75,792 KB
testcase_37 AC 357 ms
75,976 KB
testcase_38 AC 377 ms
76,116 KB
testcase_39 AC 365 ms
75,896 KB
testcase_40 AC 356 ms
75,860 KB
testcase_41 AC 360 ms
76,144 KB
testcase_42 AC 361 ms
75,664 KB
testcase_43 AC 33 ms
52,552 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = val = 0
N = 1<<n
for mask in range(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