結果

問題 No.1016 三目並べ
ユーザー tochiji1tochiji1
提出日時 2020-04-08 02:10:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 167,056 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 13:19:10
合計ジャッジ時間 2,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using namespace std;

int main() {
    int T;
    cin >> T;
    rep(i, T) {
        int N;
        string S;
        cin >> N >> S;
        if (N <= 2) {
            cout << "X" << endl;
            continue;
        }
        bool flag = false;
        rep(i, N - 2) {
            string s = "";
            s += S[i];
            s += S[i + 1];
            s += S[i + 2];
            // cout << s << endl;
            if(s == "ooo" || s=="oo-" || s=="o-o" || s=="-oo"){
                flag = true;
                break;
            }
        }
        cout << (flag?"O":"X") << endl;
    }
}
0