結果

問題 No.1005 BOT対策
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-02 17:00:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 59,208 KB
最終ジャッジ日時 2024-06-09 17:41:09
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,152 KB
testcase_01 AC 34 ms
53,188 KB
testcase_02 AC 33 ms
52,388 KB
testcase_03 AC 34 ms
53,508 KB
testcase_04 AC 32 ms
52,708 KB
testcase_05 AC 34 ms
52,436 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 32 ms
52,532 KB
testcase_08 AC 33 ms
52,500 KB
testcase_09 AC 34 ms
52,688 KB
testcase_10 AC 34 ms
52,484 KB
testcase_11 AC 35 ms
52,312 KB
testcase_12 AC 33 ms
53,032 KB
testcase_13 AC 35 ms
52,696 KB
testcase_14 AC 34 ms
52,908 KB
testcase_15 AC 35 ms
53,092 KB
testcase_16 AC 33 ms
52,668 KB
testcase_17 AC 35 ms
52,600 KB
testcase_18 AC 33 ms
52,404 KB
testcase_19 AC 33 ms
52,192 KB
testcase_20 AC 33 ms
53,760 KB
testcase_21 AC 35 ms
58,136 KB
testcase_22 AC 36 ms
59,208 KB
testcase_23 AC 34 ms
54,184 KB
testcase_24 AC 34 ms
53,784 KB
testcase_25 AC 34 ms
54,188 KB
testcase_26 AC 34 ms
52,480 KB
testcase_27 AC 32 ms
52,616 KB
testcase_28 AC 34 ms
53,328 KB
testcase_29 AC 33 ms
53,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
t = str(input())

if len(t) == 1:
    if t in set(list(s)):
        print(-1)
    else:
        print(0)
    exit()

def z_algorithm(s):
    n = len(s)
    Z = [0]*n
    Z[0] = n
    i = 1
    j = 0
    while i < n:
        while i+j < n and s[j] == s[i+j]:
            j += 1
        Z[i] = j
        if j == 0:
            i += 1
            continue
        k = 1
        while i+k < n and k+Z[k] < j:
            Z[i+k] = Z[k]
            k += 1
        i += k
        j -= k
    return Z

Z = z_algorithm(t+s)
#print(Z)
ans = 0
i = len(t)
while i < len(Z):
    if Z[i] >= len(t):
        ans += 1
        i += len(t)-1
    else:
        i += 1

print(ans)
0