結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー O2MTO2MT
提出日時 2021-01-23 17:26:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 76,664 KB
最終ジャッジ日時 2024-12-31 07:11:07
合計ジャッジ時間 11,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,292 KB
testcase_01 AC 37 ms
53,344 KB
testcase_02 AC 38 ms
52,960 KB
testcase_03 AC 38 ms
53,076 KB
testcase_04 AC 39 ms
53,696 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 36 ms
52,900 KB
testcase_07 AC 37 ms
52,888 KB
testcase_08 AC 38 ms
52,152 KB
testcase_09 AC 38 ms
52,924 KB
testcase_10 AC 39 ms
53,692 KB
testcase_11 AC 38 ms
53,124 KB
testcase_12 AC 39 ms
52,924 KB
testcase_13 AC 39 ms
52,524 KB
testcase_14 AC 47 ms
61,892 KB
testcase_15 AC 49 ms
63,124 KB
testcase_16 AC 39 ms
54,336 KB
testcase_17 AC 48 ms
61,728 KB
testcase_18 AC 37 ms
53,576 KB
testcase_19 AC 58 ms
65,920 KB
testcase_20 AC 48 ms
62,496 KB
testcase_21 AC 38 ms
53,884 KB
testcase_22 AC 54 ms
65,392 KB
testcase_23 AC 95 ms
76,360 KB
testcase_24 AC 135 ms
76,024 KB
testcase_25 AC 401 ms
76,204 KB
testcase_26 AC 66 ms
72,644 KB
testcase_27 AC 61 ms
69,724 KB
testcase_28 AC 403 ms
76,484 KB
testcase_29 AC 79 ms
76,084 KB
testcase_30 AC 91 ms
76,492 KB
testcase_31 AC 92 ms
76,248 KB
testcase_32 AC 70 ms
76,112 KB
testcase_33 AC 399 ms
76,180 KB
testcase_34 AC 406 ms
76,468 KB
testcase_35 AC 403 ms
76,172 KB
testcase_36 AC 399 ms
76,176 KB
testcase_37 AC 400 ms
76,152 KB
testcase_38 AC 404 ms
76,060 KB
testcase_39 AC 405 ms
76,060 KB
testcase_40 AC 401 ms
76,212 KB
testcase_41 AC 404 ms
76,160 KB
testcase_42 AC 401 ms
76,292 KB
testcase_43 AC 38 ms
52,472 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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