結果

問題 No.2094 Symmetry
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-10-07 21:44:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 120,792 KB
最終ジャッジ日時 2024-06-12 06:47:32
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 34 ms
53,600 KB
testcase_02 AC 33 ms
52,528 KB
testcase_03 AC 33 ms
52,736 KB
testcase_04 AC 32 ms
52,620 KB
testcase_05 WA -
testcase_06 AC 34 ms
51,944 KB
testcase_07 AC 33 ms
53,556 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 164 ms
110,132 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 154 ms
110,296 KB
testcase_18 AC 155 ms
110,228 KB
testcase_19 AC 196 ms
120,112 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 182 ms
119,496 KB
testcase_23 AC 156 ms
110,676 KB
testcase_24 AC 156 ms
110,476 KB
testcase_25 WA -
testcase_26 AC 177 ms
119,956 KB
testcase_27 AC 33 ms
52,440 KB
testcase_28 AC 116 ms
115,760 KB
testcase_29 AC 34 ms
53,716 KB
testcase_30 AC 120 ms
108,868 KB
testcase_31 AC 122 ms
118,864 KB
testcase_32 AC 123 ms
110,876 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 115 ms
112,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
s = [list(input()) for _ in range(2*n)]
c = [tuple(map(int,input().split())) for _ in range(2*n)]
b_cnt = sum(e.count("#") for e in s)
cc = []
for i in range(2*n):
    for j in c[i]:
        cc.append(j)
cc.sort(reverse = True)
ans = sum(cc[:b_cnt])
if not b_cnt & 1:
    cc = []
    for i in range(2*n):
        for j in range(n):
            cc.append(c[i][j] + c[i][n-j])
    cc.sort(reverse = True)
    ans = max(ans,sum(cc[:b_cnt//2]) + k)
print(ans)
0