結果

問題 No.640 76本のトロンボーン
ユーザー titiatitia
提出日時 2024-06-27 02:28:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 2,613 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 74,816 KB
最終ジャッジ日時 2024-06-27 02:28:54
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 46 ms
52,480 KB
testcase_06 AC 58 ms
65,408 KB
testcase_07 AC 89 ms
74,816 KB
testcase_08 AC 83 ms
72,704 KB
testcase_09 AC 54 ms
65,152 KB
testcase_10 AC 54 ms
65,024 KB
testcase_11 AC 65 ms
68,096 KB
testcase_12 AC 68 ms
68,992 KB
testcase_13 AC 40 ms
52,864 KB
testcase_14 AC 80 ms
72,576 KB
testcase_15 AC 42 ms
52,608 KB
testcase_16 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
MAP=[list(input().strip()) for i in range(N)]

flag=1

for i in range(N):
    if MAP[0][i]=="#":
        flag=0

    if MAP[0][N-1]=="#":
        flag=0

    if MAP[i][0]=="#":
        flag=0

    if MAP[N-1][0]=="#":
        flag=0

if flag==1:
    ANS=4
else:
    ANS=0

for ix in range(N):
    if not ("#" in MAP[ix][0:N-1]):
        for j in range(N-1):
            MAP[ix][j]="#"

        score=1

        for j in range(N):
            x=0
            for i in range(N):
                if MAP[i][j]==".":
                    x+=1
                else:
                    x=0

                if x>=N-1:
                    score+=1
                    break

        ANS=max(ANS,score)

        for j in range(N-1):
            MAP[ix][j]="."

    if not ("#" in MAP[ix][1:N]):
        for j in range(1,N):
            MAP[ix][j]="#"

        score=1

        for j in range(N):
            x=0
            for i in range(N):
                if MAP[i][j]==".":
                    x+=1
                else:
                    x=0

                if x>=N-1:
                    score+=1
                    break

        ANS=max(ANS,score)

        for j in range(1,N):
            MAP[ix][j]="."

score=0

for i in range(N):
    if not ("#" in MAP[i][1:N]) or not ("#" in MAP[i][0:N-1]):
        score+=1


ANS=max(ANS,score)

MAP2=[["."]*N for i in range(N)]
for i in range(N):
    for j in range(N):
        if MAP[i][j]=="#":
            MAP2[N-1-j][i]="#"

MAP=MAP2

for ix in range(N):
    if not ("#" in MAP[ix][0:N-1]):
        for j in range(N-1):
            MAP[ix][j]="#"

        score=1

        for j in range(N):
            x=0
            for i in range(N):
                if MAP[i][j]==".":
                    x+=1
                else:
                    x=0

                if x>=N-1:
                    score+=1
                    break

        ANS=max(ANS,score)

        for j in range(N-1):
            MAP[ix][j]="."

    if not ("#" in MAP[ix][1:N]):
        for j in range(1,N):
            MAP[ix][j]="#"

        score=1

        for j in range(N):
            x=0
            for i in range(N):
                if MAP[i][j]==".":
                    x+=1
                else:
                    x=0

                if x>=N-1:
                    score+=1
                    break

        ANS=max(ANS,score)

        for j in range(1,N):
            MAP[ix][j]="."

score=0

for i in range(N):
    if not ("#" in MAP[i][1:N]) or not ("#" in MAP[i][0:N-1]):
        score+=1

ANS=max(ANS,score)

print(ANS)
0