結果

問題 No.2094 Symmetry
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 15:02:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,780 KB
最終ジャッジ日時 2024-06-01 21:02:12
合計ジャッジ時間 9,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 331 ms
28,576 KB
testcase_10 AC 334 ms
28,640 KB
testcase_11 AC 314 ms
29,020 KB
testcase_12 AC 318 ms
28,756 KB
testcase_13 AC 274 ms
29,020 KB
testcase_14 AC 324 ms
28,956 KB
testcase_15 AC 332 ms
28,900 KB
testcase_16 AC 336 ms
28,964 KB
testcase_17 AC 272 ms
29,072 KB
testcase_18 AC 278 ms
28,640 KB
testcase_19 AC 313 ms
28,952 KB
testcase_20 AC 315 ms
29,016 KB
testcase_21 AC 324 ms
28,960 KB
testcase_22 AC 316 ms
28,712 KB
testcase_23 AC 285 ms
29,096 KB
testcase_24 AC 272 ms
29,024 KB
testcase_25 AC 317 ms
28,952 KB
testcase_26 AC 324 ms
28,956 KB
testcase_27 AC 27 ms
10,880 KB
testcase_28 AC 219 ms
27,648 KB
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 211 ms
27,732 KB
testcase_31 AC 221 ms
29,568 KB
testcase_32 AC 222 ms
29,780 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 225 ms
24,624 KB
testcase_35 AC 226 ms
24,656 KB
testcase_36 AC 219 ms
28,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
def J():
	return map(int,I().split())
N,K=J()
M=N*2
R=range(M)
b=0
for i in R:
	for c in I():b+=c=="#"
D,E=[],[]
for i in R:
	C=list(J())
	for i in R:
		D.append(C[i])
		if i<N:E.append(C[i]+C[M-i-1])
a=sum(sorted(D)[M*M-b:])
if b%2<1:a=max(a,K+sum(sorted(E)[(M*M-b)//2:]))
print(a)
0