結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 23:37:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 1,352 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2024-11-15 16:44:26
合計ジャッジ時間 9,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,988 KB
testcase_01 AC 37 ms
53,364 KB
testcase_02 AC 38 ms
53,200 KB
testcase_03 AC 37 ms
52,552 KB
testcase_04 AC 38 ms
52,000 KB
testcase_05 AC 37 ms
53,088 KB
testcase_06 AC 39 ms
52,892 KB
testcase_07 AC 38 ms
52,916 KB
testcase_08 AC 39 ms
53,028 KB
testcase_09 AC 38 ms
52,944 KB
testcase_10 AC 38 ms
53,284 KB
testcase_11 AC 39 ms
52,776 KB
testcase_12 AC 38 ms
53,560 KB
testcase_13 AC 38 ms
53,976 KB
testcase_14 AC 50 ms
62,904 KB
testcase_15 AC 49 ms
63,020 KB
testcase_16 AC 40 ms
53,376 KB
testcase_17 AC 49 ms
63,260 KB
testcase_18 AC 39 ms
52,692 KB
testcase_19 AC 51 ms
64,508 KB
testcase_20 AC 49 ms
61,888 KB
testcase_21 AC 39 ms
53,624 KB
testcase_22 AC 52 ms
64,420 KB
testcase_23 AC 76 ms
75,596 KB
testcase_24 AC 103 ms
75,772 KB
testcase_25 AC 267 ms
75,760 KB
testcase_26 AC 58 ms
66,924 KB
testcase_27 AC 57 ms
66,004 KB
testcase_28 AC 271 ms
75,704 KB
testcase_29 AC 65 ms
72,700 KB
testcase_30 AC 76 ms
75,876 KB
testcase_31 AC 77 ms
75,804 KB
testcase_32 AC 58 ms
69,108 KB
testcase_33 AC 268 ms
75,912 KB
testcase_34 AC 268 ms
75,888 KB
testcase_35 AC 266 ms
75,620 KB
testcase_36 AC 271 ms
75,868 KB
testcase_37 AC 268 ms
75,820 KB
testcase_38 AC 270 ms
75,936 KB
testcase_39 AC 266 ms
75,712 KB
testcase_40 AC 268 ms
75,768 KB
testcase_41 AC 266 ms
75,932 KB
testcase_42 AC 270 ms
76,076 KB
testcase_43 AC 37 ms
53,540 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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