結果
問題 | No.486 3 Straight Win(3連勝) |
ユーザー |
|
提出日時 | 2017-03-08 15:33:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 312 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 166,012 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 04:17:06 |
合計ジャッジ時間 | 2,501 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include<bits/stdc++.h>#define rep(i,n)for(int i=0;i<n;i++)using namespace std;int main() {int a = 0, b = 0; string s; cin >> s;for (char c : s) {if (c == 'O')a++, b = 0;else b++, a = 0;if (a >= 3) {puts("East"); return 0;}if (b >= 3) {puts("West"); return 0;}}puts("NA");}