結果

問題 No.2094 Symmetry
ユーザー ニックネームニックネーム
提出日時 2022-10-07 21:45:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,856 KB
最終ジャッジ日時 2024-06-12 06:50:45
合計ジャッジ時間 8,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 294 ms
28,508 KB
testcase_10 AC 275 ms
28,464 KB
testcase_11 AC 295 ms
29,856 KB
testcase_12 AC 288 ms
28,492 KB
testcase_13 AC 240 ms
28,952 KB
testcase_14 AC 287 ms
28,472 KB
testcase_15 AC 300 ms
29,684 KB
testcase_16 AC 283 ms
28,508 KB
testcase_17 AC 234 ms
28,956 KB
testcase_18 AC 246 ms
28,576 KB
testcase_19 AC 291 ms
28,512 KB
testcase_20 AC 283 ms
28,508 KB
testcase_21 AC 290 ms
28,384 KB
testcase_22 AC 284 ms
28,496 KB
testcase_23 AC 243 ms
29,020 KB
testcase_24 AC 244 ms
28,956 KB
testcase_25 AC 291 ms
28,500 KB
testcase_26 AC 304 ms
28,512 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 25 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 195 ms
29,624 KB
testcase_32 AC 206 ms
29,564 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 170 ms
24,572 KB
testcase_35 AC 170 ms
24,360 KB
testcase_36 AC 191 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)[-x//2:])+k
print(max(ans, sum(sorted(a)[-x:])))
0