結果

問題 No.1005 BOT対策
コンテスト
ユーザー vwxyz
提出日時 2022-09-07 01:45:00
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 425 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 540 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 19,800 KB
最終ジャッジ日時 2026-05-16 05:54:23
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import defaultdict
import sys
from typing import Counter
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math

S=readline().rstrip()
T=readline().rstrip()
ans=0
queue=""
if len(T)==1 and T in S:
    ans=-1
else:
    for s in S:
        if len(queue)>=len(T)-1 and queue[len(queue)-len(T)+1:]==T[:-1]:
            queue+="."
            ans+=1
        queue+=s
print(ans)
0