結果

問題 No.2094 Symmetry
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-10-07 21:53:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 120,520 KB
最終ジャッジ日時 2024-06-12 07:07:53
合計ジャッジ時間 7,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 47 ms
51,840 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 226 ms
119,552 KB
testcase_10 AC 222 ms
119,680 KB
testcase_11 AC 219 ms
120,520 KB
testcase_12 AC 227 ms
120,320 KB
testcase_13 AC 184 ms
110,464 KB
testcase_14 AC 225 ms
119,936 KB
testcase_15 AC 222 ms
120,192 KB
testcase_16 AC 226 ms
119,552 KB
testcase_17 AC 187 ms
110,464 KB
testcase_18 AC 188 ms
110,208 KB
testcase_19 AC 220 ms
120,220 KB
testcase_20 AC 224 ms
120,132 KB
testcase_21 AC 226 ms
120,448 KB
testcase_22 AC 226 ms
119,656 KB
testcase_23 AC 188 ms
110,592 KB
testcase_24 AC 185 ms
110,592 KB
testcase_25 AC 222 ms
119,808 KB
testcase_26 AC 225 ms
120,096 KB
testcase_27 AC 41 ms
51,584 KB
testcase_28 AC 151 ms
115,584 KB
testcase_29 AC 40 ms
51,968 KB
testcase_30 AC 156 ms
108,672 KB
testcase_31 AC 153 ms
118,656 KB
testcase_32 AC 154 ms
110,976 KB
testcase_33 AC 45 ms
51,712 KB
testcase_34 AC 150 ms
118,528 KB
testcase_35 AC 152 ms
118,912 KB
testcase_36 AC 137 ms
111,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
s = [list(input()) for _ in range(2*n)]
c = [tuple(map(int,input().split())) for _ in range(2*n)]
b_cnt = sum(e.count("#") for e in s)
cc = []
for i in range(2*n):
    for j in c[i]:
        cc.append(j)
cc.sort(reverse = True)
ans = sum(cc[:b_cnt])
if not b_cnt & 1:
    cc = []
    for i in range(2*n):
        for j in range(n):
            cc.append(c[i][j] + c[i][2*n-j-1])
    cc.sort(reverse = True)
    ans = max(ans,sum(cc[:b_cnt//2]) + k)
print(ans)
0