結果

問題 No.2094 Symmetry
ユーザー flippergoflippergo
提出日時 2024-12-12 12:02:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 111,880 KB
最終ジャッジ日時 2024-12-12 12:02:26
合計ジャッジ時間 8,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,476 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 38 ms
52,532 KB
testcase_03 AC 38 ms
52,460 KB
testcase_04 AC 38 ms
52,956 KB
testcase_05 AC 38 ms
53,896 KB
testcase_06 AC 38 ms
52,208 KB
testcase_07 AC 38 ms
52,072 KB
testcase_08 AC 38 ms
53,076 KB
testcase_09 AC 193 ms
110,956 KB
testcase_10 AC 220 ms
110,748 KB
testcase_11 AC 195 ms
111,696 KB
testcase_12 AC 192 ms
111,352 KB
testcase_13 AC 158 ms
100,760 KB
testcase_14 AC 192 ms
111,580 KB
testcase_15 AC 193 ms
111,224 KB
testcase_16 AC 199 ms
110,864 KB
testcase_17 AC 160 ms
101,108 KB
testcase_18 AC 159 ms
100,648 KB
testcase_19 AC 194 ms
111,436 KB
testcase_20 AC 194 ms
111,352 KB
testcase_21 AC 195 ms
111,880 KB
testcase_22 AC 199 ms
110,664 KB
testcase_23 AC 161 ms
100,952 KB
testcase_24 AC 160 ms
101,272 KB
testcase_25 AC 194 ms
111,472 KB
testcase_26 AC 194 ms
110,864 KB
testcase_27 AC 39 ms
53,712 KB
testcase_28 AC 121 ms
106,892 KB
testcase_29 AC 38 ms
53,808 KB
testcase_30 AC 123 ms
107,044 KB
testcase_31 AC 130 ms
110,112 KB
testcase_32 AC 126 ms
109,780 KB
testcase_33 AC 39 ms
52,544 KB
testcase_34 AC 123 ms
108,368 KB
testcase_35 AC 130 ms
108,904 KB
testcase_36 AC 110 ms
100,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
S = [input().strip() for _ in range(2*N)]
C = [list(map(int,input().split())) for _ in range(2*N)]
num = 0
A = []
for i in range(2*N):
    for j in range(2*N):
        if S[i][j]=="#":
            num += 1
        A.append(C[i][j])
A = sorted(A,reverse=True)
ans = sum(A[:num])
if num%2==0:
    B = []
    for i in range(2*N):
        for j in range(N):
            B.append(C[i][j]+C[i][2*N-1-j])
    B = sorted(B,reverse=True)
    ans = max(ans,sum(B[:num//2])+K)
print(ans)
0