結果
問題 | No.486 3 Straight Win(3連勝) |
ユーザー |
![]() |
提出日時 | 2017-11-16 23:36:22 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 812 bytes |
コンパイル時間 | 656 ms |
コンパイル使用メモリ | 73,868 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 04:36:07 |
合計ジャッジ時間 | 1,678 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include<iostream>#include<iomanip>#include<cmath>#include<string>#include<algorithm>#include<vector>#include<math.h>#include<stack>using namespace std;int main(void){string S; cin >> S;int cnt = 0;while(true){if(S.size() < 3){cout << "NA" << endl;break;}else{for(int i = 1; i < S.size() - 1; i++){if(S[i] == S[i-1] && S[i] == S[i+1] && S[i] == 'O'){cnt++;cout << "East" << endl;break;}if(S[i] == S[i-1] && S[i] == S[i+1] && S[i] == 'X'){cout << "West" << endl;cnt++;break;}}}if(cnt == 0){cout << "NA" << endl;break;}break;}return 0;}