結果
問題 |
No.1016 三目並べ
|
ユーザー |
![]() |
提出日時 | 2020-04-03 22:32:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,031 bytes |
コンパイル時間 | 412 ms |
コンパイル使用メモリ | 82,080 KB |
実行使用メモリ | 76,416 KB |
最終ジャッジ日時 | 2024-07-03 04:37:46 |
合計ジャッジ時間 | 1,771 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 6 WA * 4 |
ソースコード
#!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: c = [0,0,0] c[f[s[0]]] += 1 c[f[s[1]]] += 1 c[f[s[2]]] += 1 for i in range(3,n): c[f[s[i]]] += 1 if c == [1,0,3] and s[i] == "-" and s[i-3] == "-": print("O") break c[f[s[i-3]]] -= 1 else: c = [0,0,0] c[f[s[0]]] += 1 c[f[s[1]]] += 1 c[f[s[2]]] += 1 c[f[s[3]]] += 1 for i in range(4,n): c[f[s[i]]] += 1 if c == [2,0,3] and s[i] == "o" and s[i-4] == "o": print("O") break c[f[s[i-4]]] -= 1 else: print("X") return #Solve if __name__ == "__main__": solve()