結果

問題 No.2094 Symmetry
ユーザー ytftytft
提出日時 2022-10-22 07:29:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 104,620 KB
最終ジャッジ日時 2024-07-01 12:17:20
合計ジャッジ時間 14,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 41 ms
51,328 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 522 ms
92,416 KB
testcase_10 AC 521 ms
92,416 KB
testcase_11 AC 524 ms
92,672 KB
testcase_12 AC 512 ms
92,672 KB
testcase_13 AC 520 ms
91,136 KB
testcase_14 AC 516 ms
91,904 KB
testcase_15 AC 523 ms
92,416 KB
testcase_16 AC 522 ms
91,392 KB
testcase_17 AC 523 ms
91,392 KB
testcase_18 AC 515 ms
92,928 KB
testcase_19 AC 535 ms
91,904 KB
testcase_20 AC 527 ms
93,312 KB
testcase_21 AC 517 ms
91,648 KB
testcase_22 AC 522 ms
91,904 KB
testcase_23 AC 577 ms
91,776 KB
testcase_24 AC 525 ms
92,544 KB
testcase_25 AC 521 ms
92,672 KB
testcase_26 AC 518 ms
91,520 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 AC 136 ms
88,192 KB
testcase_29 AC 42 ms
51,968 KB
testcase_30 AC 137 ms
87,680 KB
testcase_31 AC 141 ms
90,496 KB
testcase_32 AC 144 ms
90,624 KB
testcase_33 AC 43 ms
51,968 KB
testcase_34 AC 158 ms
95,368 KB
testcase_35 AC 222 ms
101,264 KB
testcase_36 AC 244 ms
104,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N,K=map(int,input().split())
black=0
A=[0 for i in range(4*N**2)]
B=[0 for i in range(2*N**2)]
for i in range(2*N):
	black+=input().count('#')
for i in range(2*N):
	temp=list(map(int,input().split()))
	for j in range(2*N):
		A[i*2*N+j]=temp[j]
	for j in range(N):
		B[i*N+j]=temp[j]+temp[2*N-1-j]
A=sorted(A,key=lambda x:-x)
B=sorted(B,key=lambda x:-x)
ans=sum(A[:black])
if black%2==0:
	ans=max(ans,sum(B[:black//2])+K)
print(ans)
0