結果

問題 No.2094 Symmetry
ユーザー 👑 rin204rin204
提出日時 2022-10-07 21:26:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-06-12 06:01:08
合計ジャッジ時間 6,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 46 ms
51,968 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 180 ms
106,880 KB
testcase_10 AC 180 ms
106,368 KB
testcase_11 AC 178 ms
107,392 KB
testcase_12 AC 181 ms
107,008 KB
testcase_13 AC 141 ms
97,348 KB
testcase_14 AC 172 ms
107,392 KB
testcase_15 AC 174 ms
107,136 KB
testcase_16 AC 172 ms
107,136 KB
testcase_17 AC 143 ms
97,152 KB
testcase_18 AC 141 ms
96,640 KB
testcase_19 AC 173 ms
107,392 KB
testcase_20 AC 176 ms
106,880 KB
testcase_21 AC 170 ms
107,520 KB
testcase_22 AC 172 ms
106,652 KB
testcase_23 AC 140 ms
97,536 KB
testcase_24 AC 146 ms
97,792 KB
testcase_25 AC 176 ms
107,136 KB
testcase_26 AC 177 ms
106,880 KB
testcase_27 AC 33 ms
52,096 KB
testcase_28 AC 102 ms
102,784 KB
testcase_29 AC 34 ms
51,968 KB
testcase_30 AC 102 ms
102,400 KB
testcase_31 AC 106 ms
105,728 KB
testcase_32 AC 107 ms
105,216 KB
testcase_33 AC 36 ms
52,096 KB
testcase_34 AC 107 ms
104,960 KB
testcase_35 AC 110 ms
105,216 KB
testcase_36 AC 100 ms
96,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
S = [input() for _ in range(2 * n)]
C = [list(map(int, input().split())) for _ in range(2 * n)]
c = 0
for row in S:
    for s in row:
        if s == "#":
            c += 1

lst = []
for row in C:
    lst += row
lst.sort(reverse=True)
ans = sum(lst[:c])
if c % 2 == 0:
    lst = []
    for i in range(2 * n):
        for j in range(n):
            lst.append(C[i][j] + C[i][2 * n - 1 - j])
    lst.sort(reverse=True)
    tmp = sum(lst[:c // 2]) + k
    ans = max(ans, tmp)
print(ans)
0