結果

問題 No.2094 Symmetry
ユーザー AkariAkari
提出日時 2022-10-07 22:18:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 56,376 KB
最終ジャッジ日時 2024-06-12 19:05:28
合計ジャッジ時間 22,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
43,944 KB
testcase_01 AC 463 ms
44,076 KB
testcase_02 AC 468 ms
44,200 KB
testcase_03 AC 457 ms
44,588 KB
testcase_04 AC 463 ms
44,588 KB
testcase_05 AC 458 ms
44,072 KB
testcase_06 AC 463 ms
44,204 KB
testcase_07 AC 479 ms
44,200 KB
testcase_08 AC 456 ms
44,332 KB
testcase_09 AC 518 ms
49,712 KB
testcase_10 AC 514 ms
49,364 KB
testcase_11 AC 523 ms
53,560 KB
testcase_12 AC 520 ms
51,000 KB
testcase_13 AC 507 ms
49,224 KB
testcase_14 AC 535 ms
50,756 KB
testcase_15 AC 543 ms
52,028 KB
testcase_16 AC 527 ms
49,080 KB
testcase_17 AC 518 ms
48,960 KB
testcase_18 AC 524 ms
51,456 KB
testcase_19 AC 533 ms
51,252 KB
testcase_20 AC 535 ms
51,144 KB
testcase_21 AC 534 ms
51,020 KB
testcase_22 AC 529 ms
48,840 KB
testcase_23 AC 517 ms
51,708 KB
testcase_24 AC 509 ms
51,324 KB
testcase_25 AC 520 ms
49,368 KB
testcase_26 AC 511 ms
49,348 KB
testcase_27 AC 477 ms
44,204 KB
testcase_28 AC 480 ms
48,976 KB
testcase_29 AC 470 ms
44,200 KB
testcase_30 AC 487 ms
49,404 KB
testcase_31 AC 514 ms
56,376 KB
testcase_32 AC 515 ms
55,996 KB
testcase_33 AC 465 ms
44,456 KB
testcase_34 AC 494 ms
48,196 KB
testcase_35 AC 497 ms
48,596 KB
testcase_36 AC 506 ms
55,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np


def main():
    n, k = map(int, input().split())
    m = 0
    for i in range(2 * n): m += input().count('#')
    C = np.fromstring(sys.stdin.read(), np.int64, sep=' ').reshape(-1, 2 * n)

    def f(A, x):
        if x == 0: return 0
        return sum(np.sort(A.ravel())[-x:].tolist())

    ans = f(C, m)
    if ~m & 1:
        ans = max(ans, f(C[:, :n] + np.fliplr(C[:, n:]), m // 2) + k)
    print(ans)



if __name__ == '__main__':
    main()
0