結果

問題 No.2094 Symmetry
ユーザー titiatitia
提出日時 2022-10-07 22:24:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,164 KB
最終ジャッジ日時 2024-06-12 19:20:23
合計ジャッジ時間 8,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 23 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 23 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 23 ms
10,752 KB
testcase_09 AC 284 ms
29,500 KB
testcase_10 AC 276 ms
29,564 KB
testcase_11 AC 285 ms
29,856 KB
testcase_12 AC 278 ms
29,688 KB
testcase_13 AC 275 ms
29,660 KB
testcase_14 AC 278 ms
29,536 KB
testcase_15 AC 280 ms
29,624 KB
testcase_16 AC 273 ms
29,628 KB
testcase_17 AC 275 ms
29,708 KB
testcase_18 AC 278 ms
29,644 KB
testcase_19 AC 283 ms
29,508 KB
testcase_20 AC 284 ms
29,592 KB
testcase_21 AC 279 ms
29,492 KB
testcase_22 AC 275 ms
29,708 KB
testcase_23 AC 277 ms
29,708 KB
testcase_24 AC 285 ms
29,652 KB
testcase_25 AC 276 ms
29,696 KB
testcase_26 AC 283 ms
29,556 KB
testcase_27 AC 24 ms
10,752 KB
testcase_28 AC 175 ms
29,008 KB
testcase_29 AC 24 ms
10,752 KB
testcase_30 AC 173 ms
29,008 KB
testcase_31 AC 199 ms
30,024 KB
testcase_32 AC 206 ms
30,164 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 172 ms
25,992 KB
testcase_35 AC 177 ms
25,884 KB
testcase_36 AC 199 ms
28,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
S=[input().strip() for i in range(2*N)]
C=[list(map(int,input().split())) for i in range(2*N)]

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

CX=[]
for c in C:
    CX+=c[:]

ANS1=sum(sorted(CX,reverse=True)[:b])

CY=[]

for i in range(2*N):
    for j in range(N):
        CY.append(C[i][j]+C[i][2*N-1-j])

ANS2=sum(sorted(CY,reverse=True)[:b//2])+K

if b%2==1:
    ANS2=-1<<100

print(max(ANS1,ANS2))
0