結果

問題 No.2094 Symmetry
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 14:51:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,716 KB
最終ジャッジ日時 2024-06-01 20:56:47
合計ジャッジ時間 9,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 327 ms
28,504 KB
testcase_10 AC 323 ms
28,568 KB
testcase_11 AC 322 ms
29,028 KB
testcase_12 AC 333 ms
28,816 KB
testcase_13 AC 285 ms
29,088 KB
testcase_14 AC 326 ms
29,016 KB
testcase_15 AC 338 ms
28,772 KB
testcase_16 AC 334 ms
28,824 KB
testcase_17 AC 290 ms
29,108 KB
testcase_18 AC 273 ms
28,832 KB
testcase_19 AC 339 ms
28,960 KB
testcase_20 AC 330 ms
28,956 KB
testcase_21 AC 329 ms
28,980 KB
testcase_22 AC 324 ms
28,780 KB
testcase_23 AC 284 ms
29,076 KB
testcase_24 AC 279 ms
28,948 KB
testcase_25 AC 349 ms
29,036 KB
testcase_26 AC 340 ms
28,832 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 27 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 224 ms
29,584 KB
testcase_32 AC 224 ms
29,716 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 207 ms
24,736 KB
testcase_35 AC 213 ms
24,776 KB
testcase_36 AC 219 ms
28,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
def J():
	return map(int,I().split())
N,K=J()
R=range(N*2)
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[N*2-i-1])
a=sum(sorted(D)[-b:])
if b%2<1:a=max(a,K+sum(sorted(E)[-b//2:]))
print(a)
0