結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー H3PO4H3PO4
提出日時 2021-01-22 21:38:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 481 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 51,028 KB
最終ジャッジ日時 2024-06-08 13:42:29
合計ジャッジ時間 22,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
50,900 KB
testcase_01 AC 514 ms
44,212 KB
testcase_02 AC 526 ms
44,204 KB
testcase_03 AC 526 ms
43,820 KB
testcase_04 AC 515 ms
44,204 KB
testcase_05 AC 518 ms
44,332 KB
testcase_06 AC 519 ms
44,084 KB
testcase_07 AC 533 ms
44,204 KB
testcase_08 AC 518 ms
44,076 KB
testcase_09 AC 524 ms
43,700 KB
testcase_10 AC 523 ms
44,472 KB
testcase_11 AC 521 ms
44,204 KB
testcase_12 AC 517 ms
44,332 KB
testcase_13 AC 528 ms
43,820 KB
testcase_14 AC 537 ms
44,208 KB
testcase_15 AC 536 ms
44,208 KB
testcase_16 AC 526 ms
44,080 KB
testcase_17 AC 525 ms
44,088 KB
testcase_18 AC 524 ms
44,212 KB
testcase_19 AC 536 ms
44,084 KB
testcase_20 AC 530 ms
44,208 KB
testcase_21 AC 525 ms
44,080 KB
testcase_22 AC 532 ms
44,336 KB
testcase_23 AC 1,210 ms
44,464 KB
testcase_24 AC 1,878 ms
43,944 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import numpy as np

N = int(input())
A = np.array(tuple(map(int, input().split())), dtype=np.int64)
B = np.array([tuple(map(int, input().split())) for _ in range(N)], dtype=np.int64)

w = -float('inf')

it = itertools.product((0, 1), repeat=N)
next(it)
for t in it:
    comp = list(itertools.compress(range(N), t))
    tmp = A[comp].sum() + B[np.ix_(comp, comp)].sum() // 2
    if w < tmp:
        J = tuple(x + 1 for x in comp)
        w = tmp
print(w)
print(*J)
0