結果

問題 No.486 3 Straight Win(3連勝)
ユーザー kekenx
提出日時 2020-03-06 12:16:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 1,467 ms
コンパイル使用メモリ 166,060 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 02:42:30
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  string s;
  cin >> s;
  int n = s.size();
  int cnt = 0;
  bool w = true;
  for (int i = 0; i < n; ++i) {
    if (s[i] == 'O' && !w) {
      w = true;
      cnt = 0;
    } else if (s[i] == 'X' && w) {
      w = false;
      cnt = 0;
    }
    cnt++;
    if (cnt == 3) {
      cout << (w? "East": "West") << '\n';
      return 0;
    }
  }
  cout << "NA" << '\n';
  return 0;
}
0