結果

問題 No.1005 BOT対策
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-02 16:51:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 58,496 KB
最終ジャッジ日時 2024-06-09 17:26:20
合計ジャッジ時間 2,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,332 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 33 ms
52,016 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 34 ms
52,352 KB
testcase_14 AC 35 ms
52,736 KB
testcase_15 AC 34 ms
52,352 KB
testcase_16 AC 34 ms
52,224 KB
testcase_17 AC 35 ms
52,736 KB
testcase_18 WA -
testcase_19 AC 33 ms
52,480 KB
testcase_20 AC 33 ms
52,224 KB
testcase_21 AC 39 ms
58,496 KB
testcase_22 AC 40 ms
58,368 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 38 ms
52,736 KB
testcase_26 AC 35 ms
52,992 KB
testcase_27 AC 33 ms
52,096 KB
testcase_28 WA -
testcase_29 AC 34 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if len(t) == 1:
    print(-1)
    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 = 1
while i < len(Z):
    if Z[i] >= len(t):
        ans += 1
        i += len(t)
    else:
        i += 1

print(ans)
0