結果
問題 | No.430 文字列検索 |
ユーザー | lllllll88938494 |
提出日時 | 2023-05-20 14:26:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 554 ms / 2,000 ms |
コード長 | 708 bytes |
コンパイル時間 | 351 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 246,572 KB |
最終ジャッジ日時 | 2024-11-10 01:06:32 |
合計ジャッジ時間 | 4,649 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,016 KB |
testcase_01 | AC | 554 ms
246,572 KB |
testcase_02 | AC | 196 ms
78,040 KB |
testcase_03 | AC | 196 ms
77,824 KB |
testcase_04 | AC | 39 ms
53,760 KB |
testcase_05 | AC | 37 ms
54,016 KB |
testcase_06 | AC | 36 ms
54,144 KB |
testcase_07 | AC | 37 ms
54,272 KB |
testcase_08 | AC | 489 ms
241,664 KB |
testcase_09 | AC | 47 ms
63,104 KB |
testcase_10 | AC | 99 ms
91,392 KB |
testcase_11 | AC | 322 ms
97,776 KB |
testcase_12 | AC | 332 ms
97,792 KB |
testcase_13 | AC | 325 ms
97,928 KB |
testcase_14 | AC | 275 ms
89,856 KB |
testcase_15 | AC | 265 ms
85,176 KB |
testcase_16 | AC | 215 ms
78,588 KB |
testcase_17 | AC | 211 ms
78,704 KB |
ソースコード
from collections import defaultdict as df class trie: def __init__(self): self.exist = 0 self.kodomo = df(trie) def add(self,moji): now = ne for i in moji: now = now.kodomo[i] now.exist += 1 def find(self,moji): now = ne for i in moji: if not now.kodomo[i]: return False now = now.kodomo[i] return now.exist s=input() ne = trie() for i in range(len(s)): t='' for j in range(i,min(i+10,len(s))): t+=s[j] ne.add(t) q=int(input()) ans = 0 for i in range(q): t = input() ans += ne.find(t) print(ans)