結果
問題 | No.1016 三目並べ |
ユーザー | IKyopro |
提出日時 | 2020-04-03 21:39:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 975 bytes |
コンパイル時間 | 2,114 ms |
コンパイル使用メモリ | 200,572 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 01:48:41 |
合計ジャッジ時間 | 2,790 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <class T, class U> using Pa = pair<T, U>; template <class T> using vec = vector<T>; template <class T> using vvec = vector<vec<T>>; void solve(){ int N; cin >> N; string S; cin >> S; if(N<=2){ cout << "X\n"; return ; } int l = 0; bool ok = false; while(l<N){ int r = l; while(r<N && S[l]==S[r]) r++; if(S[l]=='o' && r-l>=3) ok = true; if(S[l]=='-'){ if(l>=2 && S[l-1]=='o' && S[l-2]=='o') ok = true; if(r+1<N && S[r]=='o' && S[r+1]=='o') ok = true; if(l>=1 && r<N && S[l-1]=='o' && S[r]=='o'){ int len = r-l; if(len>=5 && len%2) ok = true; } } l = r; } cout << (ok? "O\n":"X\n"); } int main(){ cin.tie(0); ios::sync_with_stdio(false); int T; cin >> T; while(T--){ solve(); } }