結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー pluto77pluto77
提出日時 2022-02-09 14:39:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-06-24 16:59:54
合計ジャッジ時間 7,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 49 ms
60,160 KB
testcase_15 AC 50 ms
60,160 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 AC 50 ms
60,032 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 52 ms
60,928 KB
testcase_20 AC 50 ms
60,288 KB
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 51 ms
60,544 KB
testcase_23 AC 63 ms
62,464 KB
testcase_24 AC 82 ms
64,768 KB
testcase_25 AC 151 ms
75,648 KB
testcase_26 AC 54 ms
61,056 KB
testcase_27 AC 53 ms
60,928 KB
testcase_28 AC 150 ms
75,136 KB
testcase_29 AC 57 ms
61,824 KB
testcase_30 AC 62 ms
62,464 KB
testcase_31 AC 63 ms
62,848 KB
testcase_32 AC 54 ms
61,312 KB
testcase_33 AC 150 ms
75,392 KB
testcase_34 AC 148 ms
75,392 KB
testcase_35 AC 148 ms
75,008 KB
testcase_36 AC 151 ms
75,008 KB
testcase_37 AC 149 ms
75,392 KB
testcase_38 AC 153 ms
75,520 KB
testcase_39 AC 150 ms
75,392 KB
testcase_40 AC 149 ms
75,264 KB
testcase_41 AC 150 ms
75,136 KB
testcase_42 AC 150 ms
75,392 KB
testcase_43 AC 41 ms
51,968 KB
testcase_44 AC 148 ms
75,392 KB
testcase_45 AC 41 ms
51,968 KB
testcase_46 AC 151 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1360
n=int(input())
a=list(map(int,input().split()))
b=[list(map(int,input().split())) for i in range(n)]
res=[0]*(2**n)
for i in range(1,2**n):
 x=i.bit_length()-1
 y=2**x
 j=y^i
 z=res[j]+a[x]
 for k in range(n):
  if j&(2**k)>0:
   z+=b[k][x]
 res[i]=z
inx=1
for i in range(1,2**n):
 if res[inx]<res[i]:
  inx=i
print(res[inx])
res2=[]
for i in range(n):
 if 2**i & inx>0:
  res2.append(i+1)
print(*res2)
0