結果

問題 No.430 文字列検索
ユーザー DrDrpilotDrDrpilot
提出日時 2023-01-12 16:28:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 1,264 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,444 KB
最終ジャッジ日時 2024-11-10 01:05:01
合計ジャッジ時間 10,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,392 KB
testcase_01 AC 997 ms
44,444 KB
testcase_02 AC 663 ms
14,080 KB
testcase_03 AC 663 ms
13,952 KB
testcase_04 AC 31 ms
11,392 KB
testcase_05 AC 31 ms
11,392 KB
testcase_06 AC 32 ms
11,520 KB
testcase_07 AC 33 ms
11,392 KB
testcase_08 AC 807 ms
44,280 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 101 ms
14,080 KB
testcase_11 AC 713 ms
18,208 KB
testcase_12 AC 723 ms
18,080 KB
testcase_13 AC 719 ms
18,200 KB
testcase_14 AC 703 ms
15,864 KB
testcase_15 AC 717 ms
15,872 KB
testcase_16 AC 683 ms
13,952 KB
testcase_17 AC 696 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I():return int(input())
def MAP():return map(int,input().split())
def MAPs():return map(str,input().split())
def LI(): return list(map(int,input().split()))
def TPL(): return tuple(map(int,input().split()))
def S():return input()
from collections import defaultdict,Counter,deque
from copy import deepcopy
from heapq import heapify,heappop,heappush
from bisect import bisect_left,bisect_right
from itertools import accumulate,product,permutations,combinations,combinations_with_replacement
from math import gcd,ceil,floor,factorial,sqrt,pi,sin,cos,tan,radians,exp
from functools import lru_cache
import time
import random
import string
alp=string.ascii_lowercase;ALP=string.ascii_uppercase
inf=float('inf');mod=998244353;Mod=10**9+7
dydx=[(1,0),(0,1),(-1,0),(0,-1)]

s=S()
n=len(s)
m=I()
hash=[0]
for i in range(n):
    hash.append((hash[-1]*100+ALP.index(s[i])+1)%mod)
d=[defaultdict(int) for _ in range(11)]
for l in range(1,n+1):
    for length in range(10):
        if l+length>n:
            break
        r=l+length
        h=(hash[r]-hash[l-1]*pow(100,r-l+1,mod))%mod
        d[r-l+1][h]+=1
ans=0
for _ in range(m):
    c=S()
    num=0
    for i in range(len(c)):
        num=num*100+ALP.index(c[i])+1
        num%=mod
    ans+=d[len(c)][num]
print(ans)
0