結果

問題 No.1005 BOT対策
ユーザー ohana
提出日時 2023-11-17 14:55:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2025-06-20 01:54:26
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
t = input()


if set(list(t)) == set(["."]) and t in s or len(t) == 1 and t in s:
    print(-1)
else:
    ans = 0
    tmp = ""
    for c in s:
        if len(tmp) == len(t):
            tmp = tmp[1:]
        tmp += c
        if tmp == t:
            ans += 1
            tmp = tmp[-1]
    print(ans)
0