結果

問題 No.2094 Symmetry
ユーザー kyskys
提出日時 2022-10-07 21:33:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,104 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 91,404 KB
最終ジャッジ日時 2024-06-12 06:22:59
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,252 KB
testcase_01 AC 39 ms
53,084 KB
testcase_02 AC 40 ms
53,008 KB
testcase_03 AC 40 ms
53,424 KB
testcase_04 AC 39 ms
52,072 KB
testcase_05 AC 40 ms
52,604 KB
testcase_06 AC 39 ms
52,872 KB
testcase_07 AC 39 ms
52,268 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 151 ms
90,552 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 153 ms
90,508 KB
testcase_18 AC 152 ms
91,148 KB
testcase_19 AC 174 ms
91,276 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 174 ms
90,892 KB
testcase_23 AC 152 ms
90,516 KB
testcase_24 AC 152 ms
90,624 KB
testcase_25 WA -
testcase_26 AC 174 ms
90,636 KB
testcase_27 AC 39 ms
53,228 KB
testcase_28 AC 104 ms
90,668 KB
testcase_29 AC 40 ms
53,088 KB
testcase_30 AC 104 ms
89,256 KB
testcase_31 AC 108 ms
91,268 KB
testcase_32 AC 108 ms
88,852 KB
testcase_33 AC 39 ms
53,680 KB
testcase_34 AC 105 ms
91,164 KB
testcase_35 WA -
testcase_36 AC 110 ms
90,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from sys import stdin, setrecursionlimit
    # setrecursionlimit(1000000)
    input = stdin.readline
    def iinput(): return int(input())
    def sinput(): return input().rstrip()
    def i0input(): return int(input()) - 1
    def linput(): return list(input().split())
    def liinput(): return list(map(int, input().split()))
    def miinput(): return map(int, input().split())
    def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
    def mi0input(): return map(lambda x: int(x) - 1, input().split())
    INF = 1000000000000000000
    MOD = 1000000007

    N, K = miinput()
    S = []
    ctr = 0
    for _ in [0] * (2*N):
        tmp = sinput()
        S.append(tmp)
        ctr += tmp.count('#')
    
    C = []
    D = []
    for _ in [0] * (2*N):
        c = liinput()
        for k in c:
            C.append(k)
        for k, l in zip(c[:N], c[N:]):
            D.append(k+l)
    
    C.sort(reverse=True)
    ans = sum(C[:ctr])
    if ctr % 2 == 0:
        D.sort(reverse=True)
        ans = max(ans, K + sum(D[:ctr//2]))
    
    print(ans)
    


main()
0