結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 23:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-11-15 16:54:31
合計ジャッジ時間 9,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 51 ms
62,080 KB
testcase_15 AC 51 ms
61,952 KB
testcase_16 AC 41 ms
52,736 KB
testcase_17 AC 51 ms
62,336 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 53 ms
62,848 KB
testcase_20 AC 50 ms
61,824 KB
testcase_21 AC 40 ms
52,224 KB
testcase_22 AC 54 ms
62,848 KB
testcase_23 AC 80 ms
76,160 KB
testcase_24 AC 112 ms
76,032 KB
testcase_25 AC 276 ms
75,904 KB
testcase_26 AC 63 ms
65,408 KB
testcase_27 AC 62 ms
65,408 KB
testcase_28 AC 276 ms
75,904 KB
testcase_29 AC 75 ms
71,808 KB
testcase_30 AC 86 ms
76,032 KB
testcase_31 AC 85 ms
75,776 KB
testcase_32 AC 66 ms
68,864 KB
testcase_33 AC 277 ms
76,032 KB
testcase_34 AC 278 ms
76,160 KB
testcase_35 AC 279 ms
75,904 KB
testcase_36 AC 278 ms
75,904 KB
testcase_37 AC 278 ms
75,904 KB
testcase_38 AC 279 ms
75,776 KB
testcase_39 AC 277 ms
76,160 KB
testcase_40 AC 277 ms
75,776 KB
testcase_41 AC 277 ms
75,904 KB
testcase_42 AC 277 ms
75,904 KB
testcase_43 AC 40 ms
51,840 KB
testcase_44 AC 266 ms
76,032 KB
testcase_45 AC 40 ms
51,968 KB
testcase_46 AC 278 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n=int(input())
ns=list(map(int,input().split()))
bs=[list(map(int,input().split())) for i in range(n)]
ans=0
anss=[]
for p in product([0,1],repeat=n):
    cnt=0
    cntb=[]
    for i in range(len(p)):
        if p[i] == 1:
            cnt+= ns[i]
            cntb.append(i)
    if len(cntb) <= 1:
        if ans <= cnt:
            ans = cnt
            anss = cntb
        continue
    for i in range(len(cntb)-1):
        for j in range(i+1,len(cntb)):
            cnt += bs[cntb[i]][cntb[j]]
            
    if ans <= cnt:
        ans = cnt
        anss = cntb
    
print(ans)
anss=list(map(lambda x:x+1,anss))
print(*anss)
            
0