結果

問題 No.1005 BOT対策
ユーザー s_shoheis_shohei
提出日時 2020-04-11 14:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 53,844 KB
最終ジャッジ日時 2024-09-19 01:36:07
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,852 KB
testcase_01 AC 37 ms
52,076 KB
testcase_02 AC 39 ms
52,124 KB
testcase_03 AC 40 ms
52,456 KB
testcase_04 AC 40 ms
52,268 KB
testcase_05 AC 38 ms
52,756 KB
testcase_06 AC 39 ms
53,060 KB
testcase_07 AC 38 ms
52,208 KB
testcase_08 AC 38 ms
53,292 KB
testcase_09 AC 38 ms
52,780 KB
testcase_10 AC 38 ms
52,388 KB
testcase_11 AC 39 ms
52,644 KB
testcase_12 AC 38 ms
53,540 KB
testcase_13 AC 40 ms
53,652 KB
testcase_14 AC 39 ms
53,632 KB
testcase_15 AC 39 ms
52,348 KB
testcase_16 AC 40 ms
53,448 KB
testcase_17 AC 38 ms
52,672 KB
testcase_18 AC 40 ms
52,368 KB
testcase_19 AC 37 ms
52,136 KB
testcase_20 AC 38 ms
52,444 KB
testcase_21 AC 38 ms
52,628 KB
testcase_22 AC 38 ms
53,844 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 37 ms
52,696 KB
testcase_25 AC 40 ms
52,264 KB
testcase_26 AC 37 ms
53,496 KB
testcase_27 AC 38 ms
52,272 KB
testcase_28 AC 38 ms
52,560 KB
testcase_29 AC 38 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=input()

if len(t)==1 and s.count(t)>0:
    print(-1)
    exit()

t_now=0
ans=0
for i in range(len(s)):
    if s[i] == t[t_now]:
        if t_now+1 == len(t):
            ans+=1
            if t[-1] == t[0]:
                t_now=1
            else:
                t_now=0
        else:
            t_now+=1
    elif s[i] == t[0]:
        t_now=1
    else:
        t_now=0
print(ans)
0