結果

問題 No.2094 Symmetry
ユーザー KazunKazun
提出日時 2022-10-07 21:36:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 107,244 KB
最終ジャッジ日時 2024-06-12 06:29:20
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,704 KB
testcase_01 AC 33 ms
54,004 KB
testcase_02 AC 33 ms
52,620 KB
testcase_03 AC 33 ms
52,648 KB
testcase_04 AC 33 ms
52,280 KB
testcase_05 AC 34 ms
52,032 KB
testcase_06 AC 33 ms
51,884 KB
testcase_07 AC 31 ms
53,512 KB
testcase_08 AC 33 ms
53,040 KB
testcase_09 AC 160 ms
106,652 KB
testcase_10 AC 158 ms
105,752 KB
testcase_11 AC 163 ms
107,244 KB
testcase_12 AC 160 ms
106,572 KB
testcase_13 AC 130 ms
96,932 KB
testcase_14 AC 161 ms
106,372 KB
testcase_15 AC 160 ms
106,700 KB
testcase_16 AC 162 ms
106,324 KB
testcase_17 AC 135 ms
96,912 KB
testcase_18 AC 139 ms
96,736 KB
testcase_19 AC 175 ms
106,716 KB
testcase_20 AC 160 ms
106,904 KB
testcase_21 AC 160 ms
106,636 KB
testcase_22 AC 161 ms
105,800 KB
testcase_23 AC 134 ms
96,828 KB
testcase_24 AC 130 ms
97,188 KB
testcase_25 AC 156 ms
106,324 KB
testcase_26 AC 158 ms
106,636 KB
testcase_27 AC 33 ms
53,856 KB
testcase_28 AC 95 ms
102,312 KB
testcase_29 AC 32 ms
53,476 KB
testcase_30 AC 95 ms
102,180 KB
testcase_31 AC 105 ms
105,184 KB
testcase_32 AC 112 ms
105,416 KB
testcase_33 AC 38 ms
53,352 KB
testcase_34 AC 98 ms
103,972 KB
testcase_35 AC 99 ms
103,908 KB
testcase_36 AC 89 ms
96,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,K=map(int,input().split())

    M=0
    for _ in range(2*N):
        M+=input().count("#")

    C=[]
    for _ in range(2*N):
        C.append(list(map(int,input().split())))

    # Type 1
    X=[]
    for i in range(2*N):
        X.extend(C[i])
    X.sort(reverse=True)
    alpha=sum(X[:M])

    # Type 2
    if M%2==0:
        Y=[]
        for i in range(2*N):
            Ci=C[i]
            for j in range(N):
                Y.append(Ci[j]+Ci[(2*N-1)-j])
        Y.sort(reverse=True)
        beta=sum(Y[:M//2])+K
    else:
        beta=-float("inf")

    return max(alpha, beta)
#==================================================
print(solve())
0