結果
問題 | No.1016 三目並べ |
ユーザー | manini |
提出日時 | 2021-01-26 13:49:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 898 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 75,516 KB |
最終ジャッジ日時 | 2024-06-23 13:29:58 |
合計ジャッジ時間 | 1,398 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,436 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
52,544 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
# coding:UTF-8 import sys MOD = 10 ** 9 + 7 INF = float('inf') T = int(input()) # 数字 res = [] for _ in range(T): N, S = input().split() # スペース区切り連続文字列 N = int(N) # "ooo" # "-oo" # "oo-" f = 0 for i in range(N-3): s = S[i:i+3] if s == "ooo" or s == "-oo" or s == "oo-": f = 1 # "-o--" # "--o-" for i in range(N-4): s = S[i:i+4] if s == "-o--" or s == "--o-": f = 1 # "o---o" m = 0 h = 0 for i in range(N-4): if S[i] == "-": if m == 1: h += 1 elif S[i] == "o": if m == 1: if h % 2 == 1: f = 1 else: h = 0 m = 1 if f: res.append("O") else: res.append("X") for r in res: print(r)