結果

問題 No.1016 三目並べ
ユーザー dn6049949dn6049949
提出日時 2020-04-03 21:51:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,249 bytes
コンパイル時間 732 ms
コンパイル使用メモリ 87,280 KB
実行使用メモリ 77,232 KB
最終ジャッジ日時 2023-09-16 01:07:26
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
71,668 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.buffer.readline().split()]
def I(): return int(sys.stdin.buffer.readline())
def LS():return [list(x) for x in sys.stdin.readline().split()]
def S():
    res = list(sys.stdin.readline())
    if res[-1] == "\n":
        return res[:-1]
    return res
def IR(n):
    return [I() for i in range(n)]
def LIR(n):
    return [LI() for i in range(n)]
def SR(n):
    return [S() for i in range(n)]
def LSR(n):
    return [LS() for i in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

def solve():
    t = I()
    f = {"o":0, "x":1, "-":2}
    for _ in range(t):
        n,s = input().split()
        n = int(n)
        if n < 5:
            print("X")
            continue
        c = [0,0,0]
        c[f[s[0]]] += 1
        c[f[s[1]]] += 1
        for i in range(2,n):
            c[f[s[i]]] += 1
            if c == [2,0,1] or c == [3,0,0]:
                print("O")
                break
            c[f[s[i-2]]] -= 1
        else:
            print("X")
    return

#Solve
if __name__ == "__main__":
    solve()
0