結果

問題 No.2094 Symmetry
ユーザー qibqib
提出日時 2023-04-29 02:06:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-18 00:50:21
合計ジャッジ時間 7,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 188 ms
107,904 KB
testcase_10 AC 185 ms
107,648 KB
testcase_11 AC 185 ms
109,056 KB
testcase_12 AC 191 ms
108,544 KB
testcase_13 AC 162 ms
98,944 KB
testcase_14 AC 197 ms
108,288 KB
testcase_15 AC 191 ms
108,416 KB
testcase_16 AC 184 ms
108,032 KB
testcase_17 AC 162 ms
98,816 KB
testcase_18 AC 156 ms
98,816 KB
testcase_19 AC 183 ms
108,288 KB
testcase_20 AC 186 ms
109,000 KB
testcase_21 AC 189 ms
109,024 KB
testcase_22 AC 189 ms
107,732 KB
testcase_23 AC 157 ms
98,944 KB
testcase_24 AC 163 ms
99,376 KB
testcase_25 AC 206 ms
108,544 KB
testcase_26 AC 200 ms
108,288 KB
testcase_27 AC 37 ms
52,224 KB
testcase_28 WA -
testcase_29 AC 35 ms
51,840 KB
testcase_30 WA -
testcase_31 AC 133 ms
107,008 KB
testcase_32 AC 134 ms
107,008 KB
testcase_33 AC 41 ms
52,096 KB
testcase_34 AC 124 ms
105,728 KB
testcase_35 AC 122 ms
105,960 KB
testcase_36 AC 111 ms
98,712 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)]

cnt = 0
xs = []
for x in range(2 * n):
  for y in range(2 * n):
    if s[x][y] == "#":
      cnt += 1
    xs.append(c[x][y])

xs.sort()
ans = sum(xs[- cnt:])

if cnt % 2 != 0:
  print(ans)
  exit()

xs = []
for x in range(2 * n):
  for y in range(n):
    xs.append(c[x][y] + c[x][2 * n - 1 - y])

xs.sort()
ans = max(ans, sum(xs[- (cnt // 2):]) + k)
print(ans)
0