結果

問題 No.342 一番ワロタww
ユーザー t98slidert98slider
提出日時 2022-07-10 19:36:07
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 861 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 169,384 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-02 03:01:53
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    string s, t = "w";
    cin >> s;
    vector<string> ans;
    int maxv = 1, cnt = 0, pre = 0;
    for(int i = 0; i <= s.size(); ){
        if(i + t.size() <= s.size() && s.substr(i, t.size()) == t){
            cnt++;
            i += t.size();
            continue;
        }
        if(pre + t.size() * cnt == i){
            cnt = 0;
            pre = i++;
            continue;
        }
        if(cnt > maxv){
            maxv = cnt;
            ans.clear();
            ans.push_back(s.substr(pre, i - pre - t.size() * cnt));
        }else if(cnt == maxv && cnt > 0){
            ans.push_back(s.substr(pre, i - pre - t.size() * cnt));
        }
        if(cnt != 0)pre = i;
        cnt = 0;
        i++;
    }
    for(auto &&t: ans){
        cout << t << '\n';
    }
}
0