結果

問題 No.430 文字列検索
ユーザー ふーらくたるふーらくたる
提出日時 2016-10-02 23:43:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 59,996 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 00:04:50
合計ジャッジ時間 12,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

using ll = long long;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    string s;
    cin >> s;
    int m;
    cin >> m;

    ll ans = 0;
    for (int i = 0; i < m; i++) {
        string c;
        cin >> c;
        int pos = 0;
        auto res = s.find(c, pos);
        while (res != -1) {
            ans++;
            pos = res + c.size();
            res = s.find(c, pos);
        }
    }
    cout << ans << endl;

    return 0;
}
0