結果

問題 No.640 76本のトロンボーン
ユーザー maspymaspy
提出日時 2020-03-23 19:43:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,608 KB
最終ジャッジ日時 2024-06-08 02:43:12
合計ジャッジ時間 10,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 469 ms
44,340 KB
testcase_01 AC 463 ms
43,948 KB
testcase_02 AC 469 ms
44,220 KB
testcase_03 WA -
testcase_04 AC 480 ms
44,084 KB
testcase_05 AC 468 ms
44,216 KB
testcase_06 WA -
testcase_07 AC 470 ms
43,956 KB
testcase_08 AC 471 ms
44,336 KB
testcase_09 AC 465 ms
44,336 KB
testcase_10 AC 479 ms
44,088 KB
testcase_11 AC 476 ms
43,964 KB
testcase_12 AC 466 ms
44,212 KB
testcase_13 WA -
testcase_14 AC 464 ms
43,828 KB
testcase_15 AC 482 ms
43,960 KB
testcase_16 AC 472 ms
44,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N = int(readline())
S = np.frombuffer(read(), 'S1').reshape(N, -1)[:, :N].copy()


def solve_vertical(S):
    H, W = S.shape
    cond_1 = np.all(S[:-1] == b'.', axis=0)
    cond_2 = np.all(S[1:] == b'.', axis=0)
    return np.count_nonzero(cond_1 | cond_2)


def solve(S):
    yield solve_vertical(S)
    yield solve_vertical(S.T)
    for _ in range(2):
        S = S.T
        for _ in range(4):
            S = S[::-1].T
            if np.all(S[0, 1:] == b'.'):
                S[0, 1:] = b'#'
                for x in solve(S):
                    yield x + 1


print(max(solve(S)))
0