結果

問題 No.2094 Symmetry
ユーザー H20H20
提出日時 2022-10-07 22:41:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 106,952 KB
最終ジャッジ日時 2024-06-12 19:53:56
合計ジャッジ時間 6,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,008 KB
testcase_01 AC 32 ms
53,036 KB
testcase_02 AC 32 ms
53,476 KB
testcase_03 AC 32 ms
53,216 KB
testcase_04 AC 32 ms
52,636 KB
testcase_05 AC 33 ms
53,700 KB
testcase_06 AC 33 ms
53,976 KB
testcase_07 AC 33 ms
52,400 KB
testcase_08 AC 32 ms
52,676 KB
testcase_09 AC 172 ms
106,188 KB
testcase_10 AC 174 ms
105,676 KB
testcase_11 AC 170 ms
106,828 KB
testcase_12 AC 176 ms
106,308 KB
testcase_13 AC 143 ms
96,344 KB
testcase_14 AC 163 ms
106,180 KB
testcase_15 AC 176 ms
106,180 KB
testcase_16 AC 163 ms
105,928 KB
testcase_17 AC 138 ms
96,328 KB
testcase_18 AC 144 ms
96,208 KB
testcase_19 AC 171 ms
106,316 KB
testcase_20 AC 188 ms
106,952 KB
testcase_21 AC 177 ms
106,440 KB
testcase_22 AC 179 ms
105,556 KB
testcase_23 AC 140 ms
96,852 KB
testcase_24 AC 138 ms
96,592 KB
testcase_25 AC 175 ms
106,316 KB
testcase_26 AC 168 ms
105,796 KB
testcase_27 AC 31 ms
53,156 KB
testcase_28 AC 100 ms
101,688 KB
testcase_29 AC 31 ms
53,068 KB
testcase_30 AC 103 ms
101,668 KB
testcase_31 AC 106 ms
104,372 KB
testcase_32 AC 107 ms
104,896 KB
testcase_33 AC 32 ms
53,228 KB
testcase_34 AC 102 ms
103,256 KB
testcase_35 AC 104 ms
101,196 KB
testcase_36 AC 98 ms
99,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
S =  []
black = 0
for _ in range(N*2):
    S.append(list(input()))
    black+=S[-1].count('#')
C = []
ALL = []
for _ in range(N*2):
    C.append(list(map(int, input().split())))
    ALL.extend(C[-1])
ALL.sort(reverse=True)
ans = sum(ALL[:black])
if black%2==0:
    MIRROR = []
    for i in range(N*2):
        for j in range(N):
            MIRROR.append(C[i][j]+C[i][2*N-j-1])
    MIRROR.sort(reverse=True)
    ans = max(ans,sum(MIRROR[:black//2])+K)

print(ans)
0