結果

問題 No.2094 Symmetry
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 14:51:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,720 KB
最終ジャッジ日時 2024-12-22 10:42:50
合計ジャッジ時間 10,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 384 ms
28,504 KB
testcase_10 AC 384 ms
28,448 KB
testcase_11 AC 385 ms
28,900 KB
testcase_12 AC 383 ms
28,564 KB
testcase_13 AC 326 ms
28,708 KB
testcase_14 AC 388 ms
28,752 KB
testcase_15 AC 388 ms
28,764 KB
testcase_16 AC 386 ms
28,696 KB
testcase_17 AC 328 ms
28,980 KB
testcase_18 AC 334 ms
28,452 KB
testcase_19 AC 386 ms
28,832 KB
testcase_20 AC 393 ms
28,820 KB
testcase_21 AC 385 ms
28,980 KB
testcase_22 AC 383 ms
28,528 KB
testcase_23 AC 326 ms
28,948 KB
testcase_24 AC 335 ms
28,828 KB
testcase_25 AC 388 ms
28,912 KB
testcase_26 AC 391 ms
28,960 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 WA -
testcase_29 AC 32 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 261 ms
29,440 KB
testcase_32 AC 259 ms
29,592 KB
testcase_33 AC 31 ms
10,624 KB
testcase_34 AC 243 ms
24,484 KB
testcase_35 AC 247 ms
24,388 KB
testcase_36 AC 262 ms
28,292 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