結果
問題 | No.1016 三目並べ |
ユーザー | kozy |
提出日時 | 2021-05-09 17:42:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-18 23:07:43 |
合計ジャッジ時間 | 1,597 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 31 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
T=int(input()) for i in range(T): N,S=input().split() N=int(N) flag=True for i in range(N-2): if S[i]==S[i+1]==S[i+2]=="o": print("O") flag=False break if (S[i]==S[i+1]=="o") and S[i+2]=="-": print("O") flag=False break if (S[i]==S[i+2]=="o") and S[i+1]=="-": print("O") flag=False break if (S[i+2]==S[i+1]=="o") and S[i]=="-": print("O") flag=False break if i!=N-3: if (S[i+1]=="o") and S[i]==S[i+2]==S[i+3]=="-": print("O") flag=False break if (S[i+2]=="o") and S[i]==S[i+1]==S[i+3]=="-": print("O") flag=False break if flag: print("X")