結果

問題 No.640 76本のトロンボーン
ユーザー H3PO4H3PO4
提出日時 2020-10-25 09:56:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,332 KB
最終ジャッジ日時 2024-07-21 17:07:01
合計ジャッジ時間 13,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
43,836 KB
testcase_01 AC 540 ms
43,560 KB
testcase_02 AC 546 ms
43,460 KB
testcase_03 AC 547 ms
44,064 KB
testcase_04 AC 528 ms
43,456 KB
testcase_05 AC 540 ms
44,076 KB
testcase_06 WA -
testcase_07 AC 523 ms
43,580 KB
testcase_08 AC 536 ms
43,704 KB
testcase_09 AC 549 ms
43,952 KB
testcase_10 AC 541 ms
43,704 KB
testcase_11 AC 548 ms
43,588 KB
testcase_12 AC 525 ms
43,676 KB
testcase_13 WA -
testcase_14 AC 523 ms
43,580 KB
testcase_15 AC 518 ms
43,820 KB
testcase_16 AC 529 ms
44,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
S = np.array([[s == '.' for s in input()] for _ in range(N)])


def solve(S):
    """左詰め横並べ"""
    left = S[:, -1]
    res = 0
    for i in range(N):
        if np.all(S[i, 1:-1]):
            if S[i, 0]:
                res += 1
            elif S[i, -1]:
                res += 1
                left[i] = False
    if np.all(S[1:-1, -1]) and (S[0, -1] or S[-1, -1]):
        res += 1
    return res


ans = 0
for i in range(4):
    ans = max(ans, solve(S))
    # 回す
    S = np.fliplr(S.T)
print(ans)
0