結果

問題 No.1005 BOT対策
ユーザー snrnsidy
提出日時 2021-06-01 07:14:17
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 194,164 KB
最終ジャッジ日時 2025-01-21 20:57:24
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 

using namespace std;

int main(void)
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    string s, t;

    cin >> s;
    cin >> t;

    int res = 0;

    int n = s.length();
    int m = t.length();
    int idx = 0;
    while (1)
    {
        if (idx > n - m)
        {
            break;
        }
        if (s.substr(idx, m) == t)
        {
            res++;
            idx += m;
        }
        else
        {
            idx++;
        }
    }
    
    if (t.length() == 1)
    {
        if (res > 0)
        {
            cout << -1 << '\n';
        }
        else
        {
            cout << res << '\n';
        }
    }
    else
    {
        cout << res << '\n';
    }
    return 0;
}
0