結果

問題 No.2094 Symmetry
ユーザー a aa a
提出日時 2022-10-11 08:26:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 57,792 KB
最終ジャッジ日時 2024-06-25 04:21:30
合計ジャッジ時間 24,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 476 ms
44,356 KB
testcase_03 WA -
testcase_04 AC 490 ms
44,096 KB
testcase_05 AC 499 ms
43,964 KB
testcase_06 AC 496 ms
44,272 KB
testcase_07 AC 491 ms
43,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 630 ms
56,388 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 633 ms
56,252 KB
testcase_18 AC 631 ms
56,508 KB
testcase_19 AC 646 ms
57,408 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 644 ms
57,532 KB
testcase_23 AC 636 ms
56,252 KB
testcase_24 AC 629 ms
56,512 KB
testcase_25 WA -
testcase_26 AC 657 ms
57,528 KB
testcase_27 AC 490 ms
43,960 KB
testcase_28 AC 614 ms
57,532 KB
testcase_29 AC 484 ms
44,216 KB
testcase_30 AC 604 ms
57,148 KB
testcase_31 AC 649 ms
57,152 KB
testcase_32 AC 638 ms
57,504 KB
testcase_33 AC 506 ms
44,208 KB
testcase_34 AC 614 ms
53,304 KB
testcase_35 AC 611 ms
53,956 KB
testcase_36 AC 617 ms
55,096 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