結果

問題 No.1016 三目並べ
ユーザー Y17Y17
提出日時 2020-04-03 22:57:52
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 165,180 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-16 04:08:20
合計ジャッジ時間 2,163 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 5 ms
4,380 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 5 ms
4,380 KB
testcase_10 AC 5 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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-") != string::npos;
		f |= s.find("-o--") != string::npos;

		bool no = true;
		int l = 0;

		for(int i = 0;i < n;i++){
			if(s[i] == 'o'){
				if(no){
					no = false;
				}else{
					f |= (i-l-1) % 2 != 0;
				}
				l = i;
			}else if(s[i] == 'x'){
				no = true;
			}
		}

		cout << (f ? "O" : "X") << endl; 
	}

	return 0;
}
0