結果
| 問題 |
No.1005 BOT対策
|
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2022-09-07 01:41:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 451 bytes |
| コンパイル時間 | 124 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 11,648 KB |
| 最終ジャッジ日時 | 2024-11-22 01:55:03 |
| 合計ジャッジ時間 | 2,345 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 10 |
ソースコード
from collections import defaultdict
import sys
from typing import Counter
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math
S=list(readline().rstrip())
T=list(readline().rstrip())
ans=0
queue=[]
if len(T)==1 and T in S:
ans=-1
else:
for s in S:
if len(queue)>=len(T)-1 and queue[len(queue)-len(T)+1:]==T[:-1]:
queue.append(".")
ans+=1
queue.append(s)
print(ans)
vwxyz