結果
問題 | No.1016 三目並べ |
ユーザー | uni_python |
提出日時 | 2020-04-04 09:13:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,066 bytes |
コンパイル時間 | 516 ms |
コンパイル使用メモリ | 82,340 KB |
実行使用メモリ | 72,700 KB |
最終ジャッジ日時 | 2024-07-03 07:00:36 |
合計ジャッジ時間 | 1,501 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,004 KB |
testcase_01 | AC | 33 ms
53,148 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
def I(): return int(input()) def MI(): return map(int, input().split()) def LI(): return list(map(int, input().split())) mod=10**9+7 def main(): T=I() for _ in range(T): a,S=input().split() N=int(a) S=["x","x"]+list(S)+["x","x"] now="x" length=1 f=0 for i in range(2,N+2): if S[i]==now: length+=1 else: now=S[i] length=1 if now=="o" and length==3: f=1 break elif now=="o" and length==2 and (S[i-1]=="-" or S[i+1]=="-"): f=1 break elif now=="o" and (S[i-1]=="-" and S[i+1]=="-") and(S[i-2]=="-" or S[i+2]=="-"): f=1 break elif now=="-" and length%2==1 and (S[i-1]=="o" and S[i+1]=="o"): f=1 break if f==1: print("O") else: print("X") main()