結果
問題 |
No.486 3 Straight Win(3連勝)
|
ユーザー |
|
提出日時 | 2017-03-29 02:54:45 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 508 bytes |
コンパイル時間 | 650 ms |
コンパイル使用メモリ | 56,160 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-26 04:24:31 |
合計ジャッジ時間 | 1,960 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include <iostream> #include <string> int main() { const std::string w("West"); const std::string e("East"); std::string in; std::cin >> in; if (in.length() < 3) { std::cout << "NA" << std::endl; return 0; } for (auto itr = in.begin() + 2; itr != in.end(); itr++) { if (*(itr-2) == *(itr-1) && *(itr-1) == *itr) { if (*itr == 'X') std::cout << w << std::endl; else std::cout << e << std::endl; return 0; } } std::cout << "NA" << std::endl; return 0; }