結果

問題 No.2094 Symmetry
ユーザー ああああ
提出日時 2022-10-12 20:08:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 109,016 KB
最終ジャッジ日時 2024-06-26 11:28:45
合計ジャッジ時間 8,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 195 ms
107,984 KB
testcase_10 AC 189 ms
107,776 KB
testcase_11 AC 188 ms
108,864 KB
testcase_12 AC 188 ms
108,544 KB
testcase_13 AC 186 ms
108,032 KB
testcase_14 AC 188 ms
108,416 KB
testcase_15 AC 189 ms
108,372 KB
testcase_16 AC 188 ms
108,028 KB
testcase_17 AC 186 ms
107,520 KB
testcase_18 AC 185 ms
107,352 KB
testcase_19 AC 195 ms
108,416 KB
testcase_20 AC 186 ms
108,560 KB
testcase_21 AC 191 ms
109,016 KB
testcase_22 AC 188 ms
107,776 KB
testcase_23 AC 187 ms
108,288 KB
testcase_24 AC 188 ms
108,288 KB
testcase_25 AC 194 ms
108,632 KB
testcase_26 AC 189 ms
108,264 KB
testcase_27 AC 35 ms
51,840 KB
testcase_28 AC 114 ms
104,292 KB
testcase_29 AC 35 ms
52,096 KB
testcase_30 AC 120 ms
103,680 KB
testcase_31 AC 117 ms
106,964 KB
testcase_32 AC 122 ms
106,872 KB
testcase_33 AC 36 ms
52,352 KB
testcase_34 AC 118 ms
105,728 KB
testcase_35 AC 127 ms
105,728 KB
testcase_36 AC 117 ms
106,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

c=[]
black=0
sym=[]
for i in range(2*N):
    for j in range(2*N):
        c.append(C[i][j])
        if S[i][j]=="#":
            black+=1

for i in range(N*2):
    for j in range(N):
        sym.append((C[i][j]+C[i][2*N-j-1]))
c.sort(reverse=True)
sym.sort(reverse=True)
ans=sum(c[:black])

if black%2==1:
    print(ans)
    exit()

ans=max(ans,sum(sym[:black//2])+K)
print(ans)

0