結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー gorugo30gorugo30
提出日時 2021-01-22 21:35:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,328 KB
最終ジャッジ日時 2024-06-08 13:30:58
合計ジャッジ時間 9,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,432 KB
testcase_01 AC 39 ms
52,448 KB
testcase_02 AC 38 ms
52,564 KB
testcase_03 AC 39 ms
52,464 KB
testcase_04 AC 37 ms
52,616 KB
testcase_05 AC 38 ms
53,684 KB
testcase_06 AC 38 ms
52,324 KB
testcase_07 AC 39 ms
53,144 KB
testcase_08 AC 37 ms
53,236 KB
testcase_09 AC 39 ms
53,052 KB
testcase_10 AC 37 ms
52,892 KB
testcase_11 AC 38 ms
53,268 KB
testcase_12 AC 37 ms
52,392 KB
testcase_13 AC 38 ms
53,100 KB
testcase_14 AC 48 ms
62,000 KB
testcase_15 AC 47 ms
61,976 KB
testcase_16 AC 40 ms
53,012 KB
testcase_17 AC 48 ms
62,652 KB
testcase_18 AC 38 ms
52,824 KB
testcase_19 AC 54 ms
65,284 KB
testcase_20 AC 48 ms
62,232 KB
testcase_21 AC 39 ms
52,736 KB
testcase_22 AC 53 ms
64,332 KB
testcase_23 AC 75 ms
75,960 KB
testcase_24 AC 100 ms
75,684 KB
testcase_25 AC 273 ms
76,132 KB
testcase_26 AC 62 ms
66,892 KB
testcase_27 AC 56 ms
65,968 KB
testcase_28 AC 267 ms
75,892 KB
testcase_29 AC 65 ms
72,628 KB
testcase_30 AC 75 ms
75,900 KB
testcase_31 AC 77 ms
76,080 KB
testcase_32 AC 58 ms
69,128 KB
testcase_33 AC 266 ms
75,924 KB
testcase_34 AC 266 ms
75,860 KB
testcase_35 AC 270 ms
76,056 KB
testcase_36 AC 265 ms
76,004 KB
testcase_37 AC 264 ms
75,932 KB
testcase_38 AC 265 ms
76,180 KB
testcase_39 AC 271 ms
75,728 KB
testcase_40 AC 271 ms
75,884 KB
testcase_41 AC 273 ms
75,848 KB
testcase_42 AC 270 ms
76,328 KB
testcase_43 AC 38 ms
52,640 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 i in range(N)]
ans = -100000000000000000000000000000000
bestids = []
for S in range(1 << N):
    ids = []
    for i in range(N):
        if S >> i & 1:
            ids.append(i)
    point = 0
    for i in range(len(ids)):
        point += A[ids[i]]
        for j in range(i + 1, len(ids)):
            point += B[ids[i]][ids[j]]
    if point > ans:
        ans = point
        bestids = ids
print(ans)
print(*map(lambda x: x + 1, bestids))
0