結果

問題 No.1005 BOT対策
ユーザー hamap000hamap000
提出日時 2020-03-16 14:00:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 1,386 ms
コンパイル使用メモリ 162,704 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-01 20:09:42
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef long long ll;
typedef pair<int,int> P;
int main()
{
    string S, T;
    cin >> S >> T;
    int num = 0;
    rep(i,S.size()-T.size()+1){
        bool l = false;
        for (int j = 0; j < T.size();j++){
            if(S.at(i+j)!=T.at(j)){
                l = true;
            }
        }
        if(!l){
            if(T.size()==1){
                cout << -1 << endl;
                return 0;
            }
            num++;
            i += T.size()-2;
        }
    }
    cout << num << endl;
}
0