結果

問題 No.2094 Symmetry
ユーザー a aa a
提出日時 2022-10-11 08:29:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 57,924 KB
最終ジャッジ日時 2024-06-25 04:25:20
合計ジャッジ時間 25,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
44,100 KB
testcase_01 AC 496 ms
44,480 KB
testcase_02 AC 493 ms
44,224 KB
testcase_03 AC 494 ms
44,228 KB
testcase_04 AC 492 ms
44,348 KB
testcase_05 AC 501 ms
44,360 KB
testcase_06 AC 494 ms
43,964 KB
testcase_07 AC 500 ms
44,216 KB
testcase_08 AC 495 ms
44,096 KB
testcase_09 AC 666 ms
57,152 KB
testcase_10 AC 671 ms
57,192 KB
testcase_11 AC 673 ms
57,924 KB
testcase_12 AC 660 ms
57,276 KB
testcase_13 AC 639 ms
56,120 KB
testcase_14 AC 667 ms
57,524 KB
testcase_15 AC 664 ms
57,148 KB
testcase_16 AC 659 ms
57,796 KB
testcase_17 AC 635 ms
56,516 KB
testcase_18 AC 636 ms
56,256 KB
testcase_19 AC 656 ms
57,280 KB
testcase_20 AC 663 ms
57,528 KB
testcase_21 AC 665 ms
57,284 KB
testcase_22 AC 657 ms
57,408 KB
testcase_23 AC 649 ms
56,892 KB
testcase_24 AC 641 ms
56,252 KB
testcase_25 AC 655 ms
57,408 KB
testcase_26 AC 656 ms
57,412 KB
testcase_27 AC 490 ms
44,104 KB
testcase_28 AC 613 ms
57,284 KB
testcase_29 AC 497 ms
44,348 KB
testcase_30 AC 616 ms
57,284 KB
testcase_31 AC 647 ms
57,668 KB
testcase_32 AC 644 ms
57,924 KB
testcase_33 AC 504 ms
44,100 KB
testcase_34 AC 610 ms
53,444 KB
testcase_35 AC 617 ms
53,564 KB
testcase_36 AC 636 ms
55,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n,k=list(map(int,input().split()))
s=[]
c=[]
for i in range(n*2):
    s.extend(list(input()))
for j in range(n*2):
    c.append(list(map(int,input().split())))
b=s.count("#")
m=np.array(c)
o=np.sort(m.ravel())[::-1]
os=sum(o[:b])
if b%2==1:
    print(os)
else:
    p=m[:,:n]+m[:,n:2*n][:,::-1]
    q=np.sort(p.ravel())[::-1]
    qs=sum(q[:b//2])+k
    print(max(qs,os))
0