結果

問題 No.1005 BOT対策
ユーザー s_shoheis_shohei
提出日時 2020-04-11 14:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,884 KB
実行使用メモリ 53,972 KB
最終ジャッジ日時 2025-01-01 20:11:38
合計ジャッジ時間 2,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=input()

if len(t)==1 and s.count(t)>0:
    print(-1)
    exit()

t_now=0
ans=0
for i in range(len(s)):
    if s[i] == t[t_now]:
        if t_now+1 == len(t):
            ans+=1
            if t[-1] == t[0]:
                t_now=1
            else:
                t_now=0
        else:
            t_now+=1
    elif s[i] == t[0]:
        t_now=1
    else:
        t_now=0
print(ans)
0