結果

問題 No.1005 BOT対策
ユーザー H20H20
提出日時 2020-12-15 14:57:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 56,872 KB
最終ジャッジ日時 2025-01-01 20:13:23
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
temp = S.find(T)
while temp>=0:
    S = S[:temp+len(T)-1] + '.' + S[temp+len(T)-1:]
    temp = S.find(T)
    cnt+=1

print(cnt)
0