結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー O2MTO2MT
提出日時 2021-01-23 17:28:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-06-10 01:10:58
合計ジャッジ時間 9,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 34 ms
52,316 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 34 ms
52,480 KB
testcase_09 AC 33 ms
51,968 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 34 ms
52,736 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 35 ms
52,608 KB
testcase_14 AC 42 ms
61,952 KB
testcase_15 AC 43 ms
61,568 KB
testcase_16 AC 34 ms
52,992 KB
testcase_17 AC 44 ms
61,312 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 54 ms
65,280 KB
testcase_20 AC 42 ms
61,696 KB
testcase_21 AC 34 ms
52,608 KB
testcase_22 AC 47 ms
65,024 KB
testcase_23 AC 84 ms
76,416 KB
testcase_24 AC 121 ms
76,364 KB
testcase_25 AC 355 ms
76,532 KB
testcase_26 AC 59 ms
71,808 KB
testcase_27 AC 60 ms
68,992 KB
testcase_28 AC 355 ms
76,416 KB
testcase_29 AC 75 ms
76,160 KB
testcase_30 AC 83 ms
76,532 KB
testcase_31 AC 83 ms
76,200 KB
testcase_32 AC 66 ms
76,160 KB
testcase_33 AC 361 ms
76,400 KB
testcase_34 AC 353 ms
76,416 KB
testcase_35 AC 362 ms
76,416 KB
testcase_36 AC 360 ms
76,288 KB
testcase_37 AC 351 ms
76,400 KB
testcase_38 AC 350 ms
76,288 KB
testcase_39 AC 350 ms
76,288 KB
testcase_40 AC 360 ms
76,416 KB
testcase_41 AC 356 ms
76,416 KB
testcase_42 AC 358 ms
76,288 KB
testcase_43 AC 33 ms
52,224 KB
testcase_44 AC 334 ms
76,160 KB
testcase_45 AC 33 ms
52,480 KB
testcase_46 AC 347 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = [list(map(int,input().split())) for _ in range(N)]
ans_point = 0
ans_waon = [] 
for i in range(2**N):
    point = 0
    waon = []
    pattern = bin(i)[2:].zfill(N)
    for j in range(N):
        if pattern[j] == "1":
            point += A[j]
            waon.append(j+1)
    len_w = len(waon)
    for k in range(len_w):
        for l in range(k+1,len_w):
            point += B[waon[k]-1][waon[l]-1]
    if ans_point <= point:
        ans_point = point
        ans_waon = waon

print(ans_point)
print(*ans_waon)
0