結果

問題 No.1016 三目並べ
ユーザー tamatotamato
提出日時 2020-04-03 21:54:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 71,000 KB
最終ジャッジ日時 2024-07-03 02:21:16
合計ジャッジ時間 1,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N, line = input().split()
        N = int(N)
        ans = 'X'
        for i in range(N-2):
            s = line[i: i+3]
            if s == 'ooo' or s == 'oo-' or s == 'o-o' or s == '-oo':
                ans = 'O'
        for i in range(N-3):
            s = line[i: i + 4]
            if s == '-o--' or s == '--o-':
                ans = 'O'
        for i in range(N-4):
            s = line[i: i+5]
            if s == 'o---o':
                ans = 'O'
        print(ans)


if __name__ == '__main__':
    main()
0