結果

問題 No.2094 Symmetry
ユーザー ニックネームニックネーム
提出日時 2022-10-07 22:05:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,816 KB
最終ジャッジ日時 2024-06-12 18:36:28
合計ジャッジ時間 7,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 266 ms
28,436 KB
testcase_10 AC 266 ms
28,344 KB
testcase_11 AC 275 ms
29,816 KB
testcase_12 AC 270 ms
28,376 KB
testcase_13 AC 221 ms
28,956 KB
testcase_14 AC 262 ms
28,348 KB
testcase_15 AC 300 ms
29,568 KB
testcase_16 AC 261 ms
28,396 KB
testcase_17 AC 231 ms
28,840 KB
testcase_18 AC 229 ms
28,568 KB
testcase_19 AC 274 ms
28,516 KB
testcase_20 AC 270 ms
28,444 KB
testcase_21 AC 261 ms
28,376 KB
testcase_22 AC 262 ms
28,496 KB
testcase_23 AC 222 ms
28,836 KB
testcase_24 AC 227 ms
28,840 KB
testcase_25 AC 261 ms
28,564 KB
testcase_26 AC 271 ms
28,520 KB
testcase_27 AC 26 ms
10,880 KB
testcase_28 AC 164 ms
27,528 KB
testcase_29 AC 25 ms
10,624 KB
testcase_30 AC 167 ms
27,472 KB
testcase_31 AC 204 ms
29,564 KB
testcase_32 AC 189 ms
29,448 KB
testcase_33 AC 25 ms
10,752 KB
testcase_34 AC 160 ms
24,328 KB
testcase_35 AC 158 ms
24,420 KB
testcase_36 AC 181 ms
28,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
x = 0; a = []; b = []
for _ in range(2*n):
    for v in input():
        if v == "#": x += 1
for _ in range(2*n):
    c = list(map(int, input().split()))
    for v in c: a.append(v)
    for i in range(n): b.append(c[i]+c[-1-i])
ans = 0 if x%2 else sum(sorted(b)[2*n*n-x//2:])+k
print(max(ans, sum(sorted(a)[4*n*n-x:])))
0