結果

問題 No.2094 Symmetry
ユーザー lloyzlloyz
提出日時 2022-10-07 22:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 118,440 KB
最終ジャッジ日時 2024-06-12 19:36:53
合計ジャッジ時間 5,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,688 KB
testcase_01 AC 40 ms
53,380 KB
testcase_02 AC 34 ms
52,404 KB
testcase_03 AC 34 ms
53,220 KB
testcase_04 AC 33 ms
53,692 KB
testcase_05 AC 33 ms
52,980 KB
testcase_06 AC 30 ms
53,220 KB
testcase_07 AC 31 ms
53,536 KB
testcase_08 AC 30 ms
52,568 KB
testcase_09 AC 164 ms
117,252 KB
testcase_10 AC 165 ms
117,000 KB
testcase_11 AC 165 ms
118,440 KB
testcase_12 AC 165 ms
117,860 KB
testcase_13 AC 137 ms
108,000 KB
testcase_14 AC 166 ms
117,528 KB
testcase_15 AC 167 ms
117,984 KB
testcase_16 AC 172 ms
117,260 KB
testcase_17 AC 144 ms
107,780 KB
testcase_18 AC 144 ms
107,884 KB
testcase_19 AC 172 ms
118,000 KB
testcase_20 AC 166 ms
117,840 KB
testcase_21 AC 166 ms
117,900 KB
testcase_22 AC 171 ms
116,960 KB
testcase_23 AC 145 ms
108,712 KB
testcase_24 AC 146 ms
108,044 KB
testcase_25 AC 172 ms
117,748 KB
testcase_26 AC 163 ms
117,392 KB
testcase_27 AC 31 ms
52,560 KB
testcase_28 AC 101 ms
113,760 KB
testcase_29 AC 31 ms
52,696 KB
testcase_30 AC 102 ms
113,648 KB
testcase_31 AC 112 ms
116,232 KB
testcase_32 AC 113 ms
116,164 KB
testcase_33 AC 34 ms
52,448 KB
testcase_34 AC 103 ms
115,796 KB
testcase_35 AC 104 ms
107,416 KB
testcase_36 AC 95 ms
107,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, k = map(int, input().split())
S = [list(input()) for _ in range(2 * n)]
C = [list(map(int, input().split())) for _ in range(2 * n)]

num = 0
L = []
for i in range(2 * n):
    for j in range(2 * n):
        L.append(C[i][j])
        if S[i][j] == '#':
            num += 1
L.sort(reverse=True)
ans = sum(L[:num])
if num % 2 == 0:
    LL = []
    for i in range(2 * n):
        for j in range(n):
            LL.append(C[i][j] + C[i][2 * n - j - 1])
    LL.sort(reverse=True)
    ans = max(ans, sum(LL[:num // 2]) + k)
print(ans)
0