結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,728 KB
testcase_01 AC 37 ms
52,948 KB
testcase_02 AC 37 ms
53,016 KB
testcase_03 AC 37 ms
52,252 KB
testcase_04 AC 37 ms
52,000 KB
testcase_05 AC 37 ms
52,732 KB
testcase_06 AC 38 ms
53,620 KB
testcase_07 AC 37 ms
53,344 KB
testcase_08 AC 38 ms
52,532 KB
testcase_09 AC 38 ms
53,052 KB
testcase_10 AC 38 ms
53,416 KB
testcase_11 AC 37 ms
52,960 KB
testcase_12 AC 38 ms
52,280 KB
testcase_13 AC 38 ms
53,432 KB
testcase_14 AC 48 ms
62,604 KB
testcase_15 AC 54 ms
62,428 KB
testcase_16 AC 41 ms
53,108 KB
testcase_17 AC 50 ms
61,368 KB
testcase_18 AC 38 ms
52,448 KB
testcase_19 AC 54 ms
65,244 KB
testcase_20 AC 48 ms
61,984 KB
testcase_21 AC 38 ms
53,080 KB
testcase_22 AC 55 ms
65,468 KB
testcase_23 AC 94 ms
76,112 KB
testcase_24 AC 137 ms
76,292 KB
testcase_25 AC 404 ms
76,296 KB
testcase_26 AC 67 ms
71,704 KB
testcase_27 AC 61 ms
69,732 KB
testcase_28 AC 407 ms
76,260 KB
testcase_29 AC 83 ms
76,116 KB
testcase_30 AC 101 ms
76,440 KB
testcase_31 AC 101 ms
76,224 KB
testcase_32 AC 75 ms
76,008 KB
testcase_33 AC 410 ms
76,268 KB
testcase_34 AC 406 ms
76,048 KB
testcase_35 AC 408 ms
76,100 KB
testcase_36 AC 404 ms
76,232 KB
testcase_37 AC 404 ms
76,076 KB
testcase_38 AC 404 ms
76,280 KB
testcase_39 AC 403 ms
76,500 KB
testcase_40 AC 404 ms
76,204 KB
testcase_41 AC 407 ms
76,072 KB
testcase_42 AC 399 ms
76,172 KB
testcase_43 AC 37 ms
53,356 KB
testcase_44 AC 395 ms
76,440 KB
testcase_45 AC 37 ms
53,020 KB
testcase_46 AC 409 ms
76,076 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