結果

問題 No.1005 BOT対策
ユーザー evawenis
提出日時 2020-08-21 01:39:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 354 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 191,936 KB
最終ジャッジ日時 2025-01-13 04:36:04
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 RE * 2 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	string s,t; cin>>s>>t;
	int ans=0,len=t.size();
	auto pos=s.find(t,0);
	while(pos!=string::npos){
		if(pos+len-2<0){
			ans=0,len=1;
			break;
		}
		s.at(pos+len-2)='.';
		pos=s.find(t,pos+len-1);
		++ans;
	}
	if(ans&&len==1)ans=-1;
	cout<<ans<<"\n"s;
}
0