結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 276 ms
28,700 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 279 ms
28,840 KB
testcase_18 AC 285 ms
28,312 KB
testcase_19 AC 322 ms
28,208 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 312 ms
28,360 KB
testcase_23 AC 280 ms
28,596 KB
testcase_24 AC 285 ms
28,832 KB
testcase_25 WA -
testcase_26 AC 308 ms
28,388 KB
testcase_27 AC 30 ms
10,496 KB
testcase_28 WA -
testcase_29 AC 30 ms
10,496 KB
testcase_30 WA -
testcase_31 AC 225 ms
29,364 KB
testcase_32 AC 223 ms
29,312 KB
testcase_33 AC 30 ms
10,496 KB
testcase_34 AC 201 ms
24,192 KB
testcase_35 AC 199 ms
24,236 KB
testcase_36 AC 224 ms
28,164 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(a[i]+a[2*n-1-i])
ans = 0 if x%2 else sum(sorted(b)[-x//2:])+k
print(max(ans, sum(sorted(a)[-x:])))
0