結果
問題 | No.342 一番ワロタww |
ユーザー | dosuken123 |
提出日時 | 2016-02-12 23:17:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,940 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 95,296 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-22 04:54:38 |
合計ジャッジ時間 | 1,433 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
ソースコード
#include <cstdlib> #include <cctype> #include <cstring> #include <cstdio> #include <cmath> #include <algorithm> #include <vector> #include <string> #include <iostream> #include <sstream> #include <map> #include <set> #include <queue> #include <stack> #include <fstream> #include <numeric> #include <iomanip> #include <bitset> #include <list> #include <stdexcept> #include <functional> #include <utility> #include <ctime> using namespace std; string findw(size_t from, string input) { std::size_t found = 0; std::size_t tmp_found = 0; // cout << "from-found+3 = " << (from-found+3) << " from = " << from << endl; while ((found = input.find("w",found))!=std::string::npos && (found<from)) { // cout << "found = " << found << " from = " << from << endl; tmp_found = found++; } // cout << "tmp_found = " << tmp_found << endl; // if (found ==std::string::npos) found = 0; if (tmp_found == 0) tmp_found -= 3; return input.substr(tmp_found+3,from-tmp_found); } int main(int argc, const char * argv[]) { string input; cin >> input; std::size_t found = 0; std::size_t tmp_found = 0; int count = 0; int max_count = 0; vector<string> ret; while ((found = input.find("w",found))!=std::string::npos) { // cout << found << endl; if (tmp_found+3 == found) count++; else count = 1; if (count > max_count) { ret.clear(); max_count = count; string hoge = findw(found-count*3,input); // cout << hoge << endl; ret.push_back(hoge); } else if (max_count == count) { string hoge = findw(found-count*3,input); // cout << hoge << endl; ret.push_back(hoge); } tmp_found = found++; } for (int i = 0; i < ret.size(); i++) { cout << ret[i] << endl; } if (ret.size() == 0) cout << endl; return 0; }