結果

問題 No.2094 Symmetry
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-07 22:19:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 107,316 KB
最終ジャッジ日時 2024-06-12 19:07:20
合計ジャッジ時間 6,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,664 KB
testcase_01 AC 36 ms
53,256 KB
testcase_02 AC 35 ms
53,244 KB
testcase_03 AC 35 ms
52,976 KB
testcase_04 AC 35 ms
52,392 KB
testcase_05 AC 35 ms
52,944 KB
testcase_06 AC 35 ms
52,016 KB
testcase_07 AC 36 ms
53,312 KB
testcase_08 AC 36 ms
52,780 KB
testcase_09 AC 181 ms
106,692 KB
testcase_10 AC 180 ms
106,564 KB
testcase_11 AC 180 ms
106,788 KB
testcase_12 AC 179 ms
106,980 KB
testcase_13 AC 145 ms
98,024 KB
testcase_14 AC 179 ms
107,192 KB
testcase_15 AC 179 ms
106,140 KB
testcase_16 AC 181 ms
106,704 KB
testcase_17 AC 146 ms
97,612 KB
testcase_18 AC 152 ms
97,372 KB
testcase_19 AC 179 ms
107,204 KB
testcase_20 AC 178 ms
107,032 KB
testcase_21 AC 176 ms
107,316 KB
testcase_22 AC 176 ms
106,436 KB
testcase_23 AC 147 ms
97,856 KB
testcase_24 AC 149 ms
97,944 KB
testcase_25 AC 179 ms
107,004 KB
testcase_26 AC 177 ms
107,124 KB
testcase_27 AC 35 ms
53,600 KB
testcase_28 AC 107 ms
103,872 KB
testcase_29 AC 36 ms
52,892 KB
testcase_30 AC 110 ms
103,788 KB
testcase_31 AC 115 ms
103,884 KB
testcase_32 AC 116 ms
103,740 KB
testcase_33 AC 36 ms
53,424 KB
testcase_34 AC 110 ms
103,860 KB
testcase_35 AC 110 ms
104,456 KB
testcase_36 AC 99 ms
96,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
S = [input() for i in range(2*n)]
C = [list(map(int,input().split())) for i in range(2*n)]

num = 0
for s in S:
    num += s.count("#")

ans = -10**20

sC = []
for c in C:
    for i in c:
        sC.append(i)
sC.sort(reverse=True)
count = 0
for i in range(num):
    count += sC[i]
ans = max(ans,count)

if num%2 == 0:
    sC = []
    for c in C:
        for i in range(n):
            cal = c[i]+c[-i-1]
            sC.append(cal)
    sC.sort(reverse=True)
    count = k
    for i in range(num//2):
        count += sC[i]
    ans = max(ans,count)
print(ans)
0