結果

問題 No.1005 BOT対策
ユーザー ohana
提出日時 2023-11-17 14:55:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-09-26 05:23:06
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
t = input()


if set(list(t)) == set(["."]) and t in s or len(t) == 1:
    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