結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー 👑 KazunKazun
提出日時 2021-01-04 03:00:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 78,408 KB
最終ジャッジ日時 2024-06-07 13:25:35
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 36 ms
52,152 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 42 ms
60,032 KB
testcase_15 AC 43 ms
59,392 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 42 ms
59,392 KB
testcase_18 AC 36 ms
51,968 KB
testcase_19 AC 44 ms
60,032 KB
testcase_20 AC 41 ms
59,520 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 43 ms
60,452 KB
testcase_23 AC 48 ms
62,592 KB
testcase_24 AC 61 ms
64,000 KB
testcase_25 AC 96 ms
76,928 KB
testcase_26 AC 45 ms
60,416 KB
testcase_27 AC 44 ms
60,928 KB
testcase_28 AC 94 ms
76,416 KB
testcase_29 AC 45 ms
61,312 KB
testcase_30 AC 52 ms
62,208 KB
testcase_31 AC 50 ms
62,208 KB
testcase_32 AC 45 ms
60,288 KB
testcase_33 AC 95 ms
76,672 KB
testcase_34 AC 96 ms
76,672 KB
testcase_35 AC 94 ms
76,672 KB
testcase_36 AC 93 ms
76,544 KB
testcase_37 AC 95 ms
76,800 KB
testcase_38 AC 94 ms
76,928 KB
testcase_39 AC 97 ms
76,416 KB
testcase_40 AC 94 ms
76,544 KB
testcase_41 AC 94 ms
76,544 KB
testcase_42 AC 94 ms
76,800 KB
testcase_43 AC 36 ms
52,352 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Score=[0]*(1<<N)

for S in range(1,1<<N):
    x=S&(-S)
    x_bit=x.bit_length()-1
    T=S^x

    C=Score[T]+A[x_bit]
    for i in range(N):
        if T&1:
            C+=B[x_bit][i]
        T>>=1

    Score[S]=C

Max=max(Score[1:])
Arg=Score.index(Max)

print(Max)
print(*[i+1 for i in range(N) if Arg&(1<<i)])
0