結果

問題 No.1016 三目並べ
ユーザー milanis48663220milanis48663220
提出日時 2020-04-03 22:54:49
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,599 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 83,484 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-16 04:02:42
合計ジャッジ時間 1,406 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int T;
    cin >> T;
    for(int d = 0; d < T; d++){
        int N;
        string S;
        cin >> N >> S;
        bool ok = false;
        for(int i = 0; i+2 < N; i++){
            if(S[i] == 'o' && S[i+1] == 'o' && S[i+2] == '-') ok = true;
            if(S[i] == '-' && S[i+1] == 'o' && S[i+2] == 'o') ok = true;
            if(S[i] == 'o' && S[i+1] == '-' && S[i+2] == 'o') ok = true;
            if(S[i] == 'o' && S[i+1] == 'o' && S[i+2] == 'o') ok = true;
        }
        for(int i = 0; i+3 < N; i++){
            if(S[i] == '-' && S[i+1] == 'o' && S[i+2] == '-' && S[i+3] == '-') ok = true;
            if(S[i] == '-' && S[i+1] == '-' && S[i+2] == 'o' && S[i+3] == '-') ok = true;
        }
        int cnto = 0;
        int cntx = 0;
        int cnt_ = 0;
        for(int i = 0; i < N; i++){
            if(S[i] == 'x') {
                cntx++;
            }
            if(S[i] == '-') cnt_++;
            if(S[i] == 'o'){
                if((cnto > 0) && (cnt_%2 == 1) && (cntx == 0)) {
                    // if(ok == false) return -1;
                    ok = true;
                }
                // if(cnt_%2 == 1 ) ok = true;
                cnt_ = 0;
                cntx = 0;
                cnto++;
            }
        }
        if(ok) cout << 'O' << endl;
        else cout << 'X' << endl;
    }
}
0