結果
| 問題 | No.1005 BOT対策 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-21 02:18:16 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 213µs | |
| コード長 | 377 bytes |
| 記録 | |
| コンパイル時間 | 1,011 ms |
| コンパイル使用メモリ | 213,780 KB |
| 実行使用メモリ | 9,404 KB |
| 最終ジャッジ日時 | 2026-07-12 08:29:36 |
| 合計ジャッジ時間 | 2,594 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
#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(len<2){
if(1<=len)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;
}