結果

問題 No.1005 BOT対策
ユーザー tamatotamato
提出日時 2020-03-06 21:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 53,824 KB
最終ジャッジ日時 2025-01-01 20:05:34
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')
    T = input().rstrip('\n')
    nt = len(T)
    N = len(S)

    if len(T) == 1:
        if S.count(T) > 0:
            print(-1)
        else:
            print(0)
        exit()

    i = 0
    ans = 0
    while True:
        if S[i:i+nt] == T:
            ans += 1
            i = i+nt-1
        else:
            i += 1
        if i >= N:
            break
    print(ans)


if __name__ == '__main__':
    main()
0