結果

問題 No.1016 三目並べ
ユーザー uni_pythonuni_python
提出日時 2020-04-04 09:17:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 72,588 KB
最終ジャッジ日時 2024-07-03 07:00:58
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,364 KB
testcase_01 AC 36 ms
52,396 KB
testcase_02 AC 35 ms
53,144 KB
testcase_03 AC 38 ms
52,988 KB
testcase_04 AC 38 ms
54,272 KB
testcase_05 AC 39 ms
53,708 KB
testcase_06 AC 39 ms
54,544 KB
testcase_07 AC 57 ms
71,288 KB
testcase_08 AC 56 ms
71,048 KB
testcase_09 AC 54 ms
72,140 KB
testcase_10 AC 64 ms
72,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    T=I()
    for _ in range(T):
        a,S=input().split()
        N=int(a)
        S=["x","x"]+list(S)+["x","x"]
        now="x"
        length=1
        f=0
        for i in range(2,N+2):
            if S[i]==now:
                length+=1
            else:
                now=S[i]
                length=1
                
            if now=="o" and length==3:
                f=1
                break
            elif now=="o" and length==2 and (S[i-2]=="-" or S[i+1]=="-"):
                f=1
                break
            elif now=="o" and (S[i-1]=="-" and S[i+1]=="-") and(S[i-2]=="-" or S[i+2]=="-"):
                f=1
                break
            
            elif now=="-" and length%2==1 and (S[i-length]=="o" and S[i+1]=="o"):
                f=1
                break
            
        if f==1:
            print("O")
        else:
            print("X")
        
        
    
    


main()
0