結果

問題 No.1016 三目並べ
ユーザー もりをもりを
提出日時 2020-04-03 21:57:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-03 02:35:34
合計ジャッジ時間 1,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 43 ms
57,984 KB
testcase_04 AC 42 ms
58,496 KB
testcase_05 AC 39 ms
53,632 KB
testcase_06 AC 44 ms
58,240 KB
testcase_07 AC 72 ms
75,520 KB
testcase_08 AC 70 ms
76,032 KB
testcase_09 AC 74 ms
75,904 KB
testcase_10 AC 71 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby

T = int(input())

def check(s, pattern):
    return s.count(pattern) > 0

for _ in range(T):
    _, s = input().split()
    ok = False
    ok |= check(s, 'ooo')
    ok |= check(s, 'oo-')
    ok |= check(s, '-oo')
    ok |= check(s, '-o--')
    ok |= check(s, '--o-')
    gb = groupby(list(s))
    gbl = [(k, len(list(v))) for k, v in gb]
    for i in range(len(gbl) - 2):
        a,b,c = gbl[i : i + 3]
        if a[0] == 'o' and b[0] == '-' and c[0] == 'o' and b[1] % 2 == 1:
            ok = True
            break
    print("XO"[ok])
0