結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー GER_chenGER_chen
提出日時 2021-01-22 21:45:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 541 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-08 14:14:46
合計ジャッジ時間 8,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 37 ms
52,736 KB
testcase_14 AC 49 ms
62,080 KB
testcase_15 AC 49 ms
62,208 KB
testcase_16 AC 42 ms
52,992 KB
testcase_17 AC 49 ms
62,208 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 52 ms
63,104 KB
testcase_20 AC 48 ms
62,720 KB
testcase_21 AC 37 ms
52,480 KB
testcase_22 AC 52 ms
63,232 KB
testcase_23 AC 74 ms
76,000 KB
testcase_24 AC 103 ms
76,032 KB
testcase_25 AC 249 ms
75,904 KB
testcase_26 AC 55 ms
65,280 KB
testcase_27 AC 52 ms
64,768 KB
testcase_28 AC 250 ms
75,892 KB
testcase_29 AC 64 ms
69,888 KB
testcase_30 AC 80 ms
75,888 KB
testcase_31 AC 74 ms
76,036 KB
testcase_32 AC 58 ms
67,584 KB
testcase_33 AC 248 ms
76,032 KB
testcase_34 AC 248 ms
75,956 KB
testcase_35 AC 254 ms
75,860 KB
testcase_36 AC 263 ms
76,288 KB
testcase_37 AC 248 ms
75,948 KB
testcase_38 AC 249 ms
75,920 KB
testcase_39 AC 247 ms
75,908 KB
testcase_40 AC 250 ms
75,904 KB
testcase_41 AC 249 ms
76,032 KB
testcase_42 AC 251 ms
76,032 KB
testcase_43 AC 38 ms
52,352 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki-1360
N = int(input())
A = list(map(int, input().split()))
B = [list(map(int, input().split())) for _ in range(N)]
prepoint = 0
for i in range(1, 1<<N):
    on, point = [], 0
    for j in range(N):
        if (i>>j)&1:
            on.append(j)
            point += A[j]
    l = len(on)
    if l > 1:
        for x in range(l-1):
            for y in range(x+1, l):
                point += B[on[x]][on[y]]
    #print(i, point)
    if point > prepoint:
        prepoint = point
        ans = [o+1 for o in on]
print(prepoint)
print(*ans)
0