結果

問題 No.640 76本のトロンボーン
ユーザー H3PO4H3PO4
提出日時 2020-10-25 10:07:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,480 KB
最終ジャッジ日時 2024-07-21 17:11:57
合計ジャッジ時間 10,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
43,720 KB
testcase_01 AC 532 ms
43,972 KB
testcase_02 AC 526 ms
43,716 KB
testcase_03 AC 526 ms
44,096 KB
testcase_04 AC 524 ms
44,208 KB
testcase_05 AC 527 ms
44,096 KB
testcase_06 AC 529 ms
44,260 KB
testcase_07 AC 516 ms
44,356 KB
testcase_08 AC 523 ms
44,100 KB
testcase_09 AC 521 ms
44,224 KB
testcase_10 AC 513 ms
44,356 KB
testcase_11 AC 514 ms
44,480 KB
testcase_12 AC 525 ms
43,720 KB
testcase_13 AC 521 ms
43,716 KB
testcase_14 AC 519 ms
44,108 KB
testcase_15 AC 521 ms
44,364 KB
testcase_16 AC 519 ms
43,716 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[:, 0].copy()
    right = S[:, -1].copy()
    res = 0
    for i in range(N):
        if np.all(S[i, 1:-1]):
            if S[i, 0]:
                res += 1
                left[i] = False
            elif S[i, -1]:
                res += 1
                right[i] = False
    if np.all(left[1:-1]) and (left[0] or left[-1]):
        res += 1
    if np.all(right[1:-1]) and (right[0] or right[-1]):
        res += 1

    return res


ans = 0
# ぐるっと一周パターン
if np.all(S[0, :]) and np.all(S[:, 0]) and np.all(S[-1, :]) and np.all(S[:, -1]):
    ans = 4

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