結果

問題 No.1016 三目並べ
ユーザー neterukunneterukun
提出日時 2020-04-03 22:16:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 67,712 KB
最終ジャッジ日時 2024-07-03 03:39:02
合計ジャッジ時間 1,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    info = list(input().split())
    n, s = info

    n = int(n)
    li = s.split("x")
    for string in li:
        if len(string) <= 2:
            continue
        if string == "-o-":
            continue
        if string[1:-1].count("o") > 0:
            print("O")
            break
        if string[0] == "o" and string[-1] == "o" and len(string)  % 2 == 1:
            print("O")
            break
    else:
        print("X")
0