結果

問題 No.2094 Symmetry
ユーザー kept1994kept1994
提出日時 2022-11-03 18:05:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 91,628 KB
最終ジャッジ日時 2024-07-18 02:15:45
合計ジャッジ時間 7,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,656 KB
testcase_01 AC 38 ms
52,516 KB
testcase_02 AC 37 ms
52,808 KB
testcase_03 AC 37 ms
53,208 KB
testcase_04 AC 37 ms
52,264 KB
testcase_05 AC 38 ms
52,064 KB
testcase_06 AC 39 ms
52,752 KB
testcase_07 AC 41 ms
52,496 KB
testcase_08 AC 38 ms
53,288 KB
testcase_09 AC 177 ms
90,588 KB
testcase_10 AC 175 ms
90,804 KB
testcase_11 AC 175 ms
90,720 KB
testcase_12 AC 178 ms
90,560 KB
testcase_13 AC 175 ms
90,808 KB
testcase_14 AC 175 ms
90,592 KB
testcase_15 AC 174 ms
90,592 KB
testcase_16 AC 176 ms
90,700 KB
testcase_17 AC 174 ms
90,596 KB
testcase_18 AC 174 ms
90,580 KB
testcase_19 AC 175 ms
90,684 KB
testcase_20 AC 176 ms
90,968 KB
testcase_21 AC 175 ms
90,568 KB
testcase_22 AC 174 ms
90,852 KB
testcase_23 AC 177 ms
90,808 KB
testcase_24 AC 176 ms
90,676 KB
testcase_25 AC 175 ms
90,808 KB
testcase_26 AC 176 ms
90,944 KB
testcase_27 AC 38 ms
53,612 KB
testcase_28 AC 107 ms
89,660 KB
testcase_29 AC 38 ms
52,156 KB
testcase_30 AC 109 ms
87,932 KB
testcase_31 AC 117 ms
89,788 KB
testcase_32 AC 109 ms
87,928 KB
testcase_33 AC 36 ms
52,608 KB
testcase_34 AC 106 ms
91,628 KB
testcase_35 AC 111 ms
89,820 KB
testcase_36 AC 112 ms
90,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
def main():
    N, K = map(int, input().split())
    black = 0
    for _ in range(2 * N):
        ss = input()
        black += ss.count("#")
    all = []
    fold = []
    for _ in range(2 * N):
        l = list(map(int, input().split()))
        all.extend(l)
        for i in range(N):
            fold.append(l[i] + l[-(i + 1)])
    all.sort(reverse=True)
    fold.sort(reverse=True)
    notsyn = sum(all[:black])
    if black % 2 == 1:
        print(notsyn)
    else:
        syn = sum(fold[:(black // 2)])
        print(max(notsyn, syn + K))

if __name__ == '__main__':
    main()
0