結果

問題 No.1016 三目並べ
ユーザー Y17
提出日時 2020-04-03 22:53:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 680 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 167,616 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 05:21:24
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

signed main(){
	int t;
	cin >> t;

	while(t--){
		int n;
		string s;
		cin >> n;
		cin >> s;
		bool f = false;
		f |= s.find("ooo") != string::npos;
		f |= s.find("oo-") != string::npos;
		f |= s.find("-oo") != string::npos;
		f |= s.find("o-o") != string::npos;
		f |= s.find("--o-") != string::npos;
		f |= s.find("-o--") != string::npos;
		f |= s.find("o---o") != string::npos;
		cout << (f ? "O" : "X") << endl; 
	}

	return 0;
}
0