結果
問題 | No.486 3 Straight Win(3連勝) |
ユーザー | hkr |
提出日時 | 2017-02-24 22:35:54 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 606 bytes |
コンパイル時間 | 744 ms |
コンパイル使用メモリ | 58,724 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 04:02:14 |
合計ジャッジ時間 | 1,457 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include <iostream> #include <vector> using namespace std; typedef long long ll; int main() { string s; cin >> s; int cnt = 1; char prev = s[0]; bool flag = false; for(int i = 1;i<s.size();i++) { if(s[i] == prev) { cnt++; if(cnt >= 3) { flag = true; break; } } else { cnt = 1; prev = s[i]; } } if(flag) { if(prev == 'O') cout << "East" << endl; else cout << "West" << endl; } else cout << "NA" << endl; }