結果

問題 No.2094 Symmetry
ユーザー ニックネームニックネーム
提出日時 2022-10-07 21:51:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,736 KB
最終ジャッジ日時 2024-06-12 07:04:31
合計ジャッジ時間 9,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 327 ms
28,492 KB
testcase_10 AC 326 ms
28,400 KB
testcase_11 AC 338 ms
29,736 KB
testcase_12 AC 326 ms
28,424 KB
testcase_13 AC 271 ms
29,140 KB
testcase_14 AC 328 ms
28,408 KB
testcase_15 AC 333 ms
29,480 KB
testcase_16 AC 318 ms
28,368 KB
testcase_17 AC 277 ms
28,756 KB
testcase_18 AC 282 ms
28,640 KB
testcase_19 AC 326 ms
28,232 KB
testcase_20 AC 329 ms
28,444 KB
testcase_21 AC 329 ms
28,252 KB
testcase_22 AC 327 ms
28,500 KB
testcase_23 AC 282 ms
28,952 KB
testcase_24 AC 282 ms
28,748 KB
testcase_25 AC 333 ms
28,300 KB
testcase_26 AC 329 ms
28,520 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 205 ms
27,648 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 217 ms
29,548 KB
testcase_32 AC 226 ms
29,384 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 187 ms
24,452 KB
testcase_35 AC 193 ms
24,452 KB
testcase_36 AC 218 ms
28,560 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)[-x//2:])+k
print(max(ans, sum(sorted(a)[-x:])) if x else 0)
0