結果

問題 No.2094 Symmetry
ユーザー tnogamitnogami
提出日時 2022-10-08 14:39:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-06-22 17:42:09
合計ジャッジ時間 11,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 377 ms
29,268 KB
testcase_10 AC 355 ms
29,148 KB
testcase_11 AC 339 ms
29,900 KB
testcase_12 AC 337 ms
29,488 KB
testcase_13 AC 328 ms
29,628 KB
testcase_14 AC 335 ms
29,620 KB
testcase_15 AC 339 ms
29,748 KB
testcase_16 AC 340 ms
29,528 KB
testcase_17 AC 339 ms
29,640 KB
testcase_18 AC 353 ms
29,264 KB
testcase_19 AC 343 ms
29,484 KB
testcase_20 AC 363 ms
29,680 KB
testcase_21 AC 337 ms
29,616 KB
testcase_22 AC 343 ms
29,112 KB
testcase_23 AC 349 ms
29,656 KB
testcase_24 AC 337 ms
29,536 KB
testcase_25 AC 341 ms
29,608 KB
testcase_26 AC 344 ms
29,560 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 26 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 246 ms
30,300 KB
testcase_32 AC 235 ms
30,336 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 213 ms
25,716 KB
testcase_35 AC 236 ms
25,544 KB
testcase_36 AC 234 ms
29,236 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)]
C_1dim = []
symetry_point = []

black_ct = 0
for i in range(2*N):
    for j in range(2*N):
        if S[i][j] == "#":
            black_ct += 1
        C_1dim.append(C[i][j])

    for k in range(N):
        symetry_point.append(C[i][k]+C[i][-(k+1)])

C_1dim.sort()
symetry_point.sort()

ans = sum(C_1dim[-black_ct:])
if black_ct%2 == 1:
    print(ans)
else:
    print(max(ans, sum(symetry_point[-(black_ct//2):])+K)) 
0