結果

問題 No.1005 BOT対策
コンテスト
ユーザー ohana
提出日時 2023-11-17 14:55:13
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 301 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 376 ms
コンパイル使用メモリ 85,632 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2026-04-13 08:35:15
合計ジャッジ時間 3,514 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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