結果
| 問題 | No.1005 BOT対策 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-08-21 02:05:57 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 385 bytes | 
| コンパイル時間 | 2,359 ms | 
| コンパイル使用メモリ | 192,192 KB | 
| 最終ジャッジ日時 | 2025-01-13 04:37:20 | 
| ジャッジサーバーID (参考情報) | judge5 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 23 TLE * 5 | 
ソースコード
#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){
		int nxpos=pos+len;
		if(nxpos-2<0){
			if(nxpos-1>=0)nxpos-=1;
		}
		else nxpos-=2;
		s.at(nxpos)='.';
		pos=s.find(t,nxpos+1);
		++ans;
	}
	if(ans&&len==1)ans=-1;
	cout<<ans<<"\n"s;
}
            
            
            
        