結果

問題 No.2094 Symmetry
ユーザー AkariAkari
提出日時 2022-10-07 22:05:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,336 KB
最終ジャッジ日時 2024-06-12 18:34:45
合計ジャッジ時間 21,818 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 422 ms
44,480 KB
testcase_01 AC 426 ms
44,236 KB
testcase_02 AC 424 ms
44,100 KB
testcase_03 AC 428 ms
44,096 KB
testcase_04 AC 425 ms
44,356 KB
testcase_05 AC 433 ms
44,236 KB
testcase_06 AC 429 ms
44,356 KB
testcase_07 AC 421 ms
44,608 KB
testcase_08 AC 427 ms
44,100 KB
testcase_09 AC 505 ms
47,944 KB
testcase_10 AC 478 ms
47,948 KB
testcase_11 AC 482 ms
47,684 KB
testcase_12 AC 473 ms
47,948 KB
testcase_13 AC 468 ms
47,684 KB
testcase_14 AC 483 ms
47,692 KB
testcase_15 AC 489 ms
47,564 KB
testcase_16 AC 481 ms
47,688 KB
testcase_17 AC 477 ms
47,948 KB
testcase_18 AC 503 ms
47,680 KB
testcase_19 AC 478 ms
47,948 KB
testcase_20 AC 477 ms
48,336 KB
testcase_21 AC 482 ms
47,944 KB
testcase_22 AC 475 ms
48,072 KB
testcase_23 AC 468 ms
47,948 KB
testcase_24 AC 484 ms
47,688 KB
testcase_25 AC 478 ms
47,696 KB
testcase_26 AC 481 ms
47,692 KB
testcase_27 AC 429 ms
44,104 KB
testcase_28 WA -
testcase_29 AC 420 ms
44,744 KB
testcase_30 WA -
testcase_31 AC 451 ms
47,696 KB
testcase_32 AC 443 ms
47,948 KB
testcase_33 AC 417 ms
44,104 KB
testcase_34 AC 440 ms
47,696 KB
testcase_35 AC 441 ms
47,944 KB
testcase_36 AC 462 ms
48,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np


def main():
    buf = sys.stdin.buffer
    n, k = map(int, buf.readline().split())
    n2 = 2 * n
    S = np.empty((n2, n2), np.bool_)
    for i in range(n2): S[i] = np.frombuffer(buf.readline().rstrip(), 'S1') == b'#'
    C = np.empty_like(S, np.int64)
    for i in range(n2):
        C[i] = np.fromstring(buf.readline().rstrip().decode(), np.int64, sep=' ')
    m = np.count_nonzero(S)
    ans = np.sort(C.ravel())[-m:].sum()
    if ~m & 1:
        ans = max(ans, np.sort((C[:, :n] + np.fliplr(C[:, n:])).ravel())[-(m // 2):].sum() + k)
    print(ans)



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