結果

問題 No.2094 Symmetry
ユーザー lloyzlloyz
提出日時 2022-10-07 22:28:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 118,296 KB
最終ジャッジ日時 2024-06-12 19:28:46
合計ジャッジ時間 5,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,212 KB
testcase_01 AC 32 ms
53,016 KB
testcase_02 AC 32 ms
52,672 KB
testcase_03 AC 31 ms
53,420 KB
testcase_04 AC 30 ms
52,860 KB
testcase_05 AC 29 ms
52,960 KB
testcase_06 AC 30 ms
52,776 KB
testcase_07 AC 29 ms
52,364 KB
testcase_08 AC 30 ms
52,316 KB
testcase_09 AC 159 ms
117,328 KB
testcase_10 AC 160 ms
116,964 KB
testcase_11 AC 161 ms
118,088 KB
testcase_12 AC 161 ms
117,824 KB
testcase_13 AC 137 ms
107,836 KB
testcase_14 AC 162 ms
117,876 KB
testcase_15 AC 179 ms
117,688 KB
testcase_16 AC 186 ms
117,468 KB
testcase_17 AC 135 ms
108,048 KB
testcase_18 AC 133 ms
107,716 KB
testcase_19 AC 160 ms
118,296 KB
testcase_20 AC 160 ms
117,704 KB
testcase_21 AC 161 ms
117,956 KB
testcase_22 AC 159 ms
116,820 KB
testcase_23 AC 136 ms
108,308 KB
testcase_24 AC 148 ms
108,396 KB
testcase_25 AC 164 ms
117,588 KB
testcase_26 AC 160 ms
117,360 KB
testcase_27 AC 33 ms
52,744 KB
testcase_28 AC 88 ms
105,080 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 99 ms
116,224 KB
testcase_32 AC 102 ms
116,176 KB
testcase_33 AC 32 ms
54,028 KB
testcase_34 AC 104 ms
115,536 KB
testcase_35 AC 107 ms
107,140 KB
testcase_36 AC 95 ms
107,892 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 > 0 and 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