結果

問題 No.2094 Symmetry
ユーザー roarisroaris
提出日時 2022-10-07 21:40:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 105,832 KB
最終ジャッジ日時 2024-06-12 06:38:57
合計ジャッジ時間 6,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 182 ms
98,104 KB
testcase_10 AC 179 ms
98,308 KB
testcase_11 AC 181 ms
98,760 KB
testcase_12 AC 184 ms
98,624 KB
testcase_13 AC 150 ms
98,360 KB
testcase_14 AC 181 ms
98,816 KB
testcase_15 AC 182 ms
98,544 KB
testcase_16 AC 181 ms
98,880 KB
testcase_17 AC 151 ms
97,784 KB
testcase_18 AC 149 ms
97,660 KB
testcase_19 AC 181 ms
98,612 KB
testcase_20 AC 181 ms
99,072 KB
testcase_21 AC 181 ms
98,860 KB
testcase_22 AC 179 ms
98,304 KB
testcase_23 AC 149 ms
98,560 KB
testcase_24 AC 150 ms
98,604 KB
testcase_25 AC 180 ms
98,456 KB
testcase_26 AC 179 ms
98,632 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 106 ms
96,208 KB
testcase_29 AC 38 ms
51,840 KB
testcase_30 AC 108 ms
96,032 KB
testcase_31 AC 111 ms
97,748 KB
testcase_32 AC 110 ms
97,644 KB
testcase_33 AC 39 ms
51,968 KB
testcase_34 AC 112 ms
105,832 KB
testcase_35 AC 115 ms
105,600 KB
testcase_36 AC 106 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
S = [input()[:-1] for _ in range(2*N)]
C = [list(map(int, input().split())) for _ in range(2*N)]
b = 0

for i in range(2*N):
    for j in range(2*N):
        if S[i][j]=='#':
            b += 1

l = []

for i in range(2*N):
    for j in range(2*N):
        l.append(C[i][j])
    
l.sort(reverse=True)
ans = sum(l[:b])

if b%2==0:
    l = []
    
    for i in range(2*N):
        for j in range(N):
            l.append(C[i][j]+C[i][2*N-1-j])
    
    l.sort(reverse=True)
    ans = max(ans, sum(l[:b//2])+K)

print(ans)
0