結果

問題 No.1005 BOT対策
ユーザー evawenis
提出日時 2020-08-21 02:24:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 193,768 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-20 00:53:54
合計ジャッジ時間 2,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

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(),dif=(len>=2?2:len>=1?1:0);
	auto pos=s.find(t,0);
	while(pos!=string::npos){
		s.at(pos+len-dif)='.';
		pos=s.find(t,pos+len-dif+1);
		++ans;
	}
	if(ans&&len==1)ans=-1;
	cout<<ans<<"\n"s;
}
0