結果

問題 No.2094 Symmetry
ユーザー KudeKude
提出日時 2022-10-07 22:08:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 110,016 KB
最終ジャッジ日時 2024-06-12 18:42:26
合計ジャッジ時間 6,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,420 KB
testcase_01 AC 30 ms
52,868 KB
testcase_02 AC 29 ms
52,692 KB
testcase_03 AC 29 ms
52,960 KB
testcase_04 AC 30 ms
52,528 KB
testcase_05 AC 30 ms
52,660 KB
testcase_06 AC 30 ms
53,216 KB
testcase_07 AC 30 ms
52,200 KB
testcase_08 AC 30 ms
52,540 KB
testcase_09 AC 153 ms
109,508 KB
testcase_10 AC 151 ms
109,148 KB
testcase_11 AC 160 ms
109,848 KB
testcase_12 AC 151 ms
109,804 KB
testcase_13 AC 124 ms
98,956 KB
testcase_14 AC 155 ms
109,740 KB
testcase_15 AC 153 ms
109,728 KB
testcase_16 AC 152 ms
109,596 KB
testcase_17 AC 126 ms
98,552 KB
testcase_18 AC 125 ms
98,580 KB
testcase_19 AC 151 ms
109,996 KB
testcase_20 AC 154 ms
109,652 KB
testcase_21 AC 153 ms
110,016 KB
testcase_22 AC 153 ms
108,988 KB
testcase_23 AC 134 ms
99,084 KB
testcase_24 AC 126 ms
99,268 KB
testcase_25 AC 162 ms
109,800 KB
testcase_26 AC 159 ms
109,344 KB
testcase_27 AC 34 ms
53,524 KB
testcase_28 AC 101 ms
105,464 KB
testcase_29 AC 34 ms
53,212 KB
testcase_30 AC 102 ms
105,244 KB
testcase_31 AC 96 ms
107,968 KB
testcase_32 AC 100 ms
108,180 KB
testcase_33 AC 31 ms
53,564 KB
testcase_34 AC 101 ms
106,760 KB
testcase_35 AC 103 ms
106,980 KB
testcase_36 AC 86 ms
98,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
cnt = sum(input().count('#') for _ in range(2 * n))
c = [list(map(int, input().split())) for _ in range(2 * n)]
c_all = []
for ci in c:
    c_all += ci
ans = sum(sorted(c_all, reverse=True)[:cnt])
if cnt % 2 == 0:
    c_sym = []
    for ci in c:
        for j in range(n):
            c_sym.append(ci[j] + ci[2 * n - 1 - j])
    ans = max(ans, sum(sorted(c_sym, reverse=True)[:cnt // 2]) + k)
print(ans)
0