結果
問題 | No.430 文字列検索 |
ユーザー | yudai1102jp |
提出日時 | 2022-05-11 01:39:42 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 234 ms / 2,000 ms |
コード長 | 1,025 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 139,972 KB |
最終ジャッジ日時 | 2024-11-10 01:00:27 |
合計ジャッジ時間 | 2,722 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,272 KB |
testcase_01 | AC | 234 ms
139,968 KB |
testcase_02 | AC | 115 ms
76,416 KB |
testcase_03 | AC | 117 ms
76,160 KB |
testcase_04 | AC | 41 ms
54,400 KB |
testcase_05 | AC | 40 ms
54,272 KB |
testcase_06 | AC | 39 ms
54,400 KB |
testcase_07 | AC | 40 ms
54,400 KB |
testcase_08 | AC | 228 ms
139,972 KB |
testcase_09 | AC | 41 ms
54,528 KB |
testcase_10 | AC | 66 ms
78,208 KB |
testcase_11 | AC | 145 ms
89,728 KB |
testcase_12 | AC | 145 ms
89,856 KB |
testcase_13 | AC | 142 ms
89,856 KB |
testcase_14 | AC | 136 ms
84,480 KB |
testcase_15 | AC | 132 ms
80,128 KB |
testcase_16 | AC | 120 ms
76,288 KB |
testcase_17 | AC | 116 ms
76,160 KB |
ソースコード
import math import sys import heapq from collections import deque sys.setrecursionlimit(500*500) stdin = sys.stdin def YES(): print('Yes') def NO(): print('No') def TAKAHASHI(): print('Takahashi') def AOKI(): print("Aoki") def ns(): return stdin.readline().strip() def ni(): return int(ns()) def na(): return list(map(int, stdin.readline().split())) def nz(): return list(map(lambda x: int(x)-1, stdin.readline().split())) def nm(n): return [na() for _ in range(n)] MOD = int(1e9+7) def YES(): print('Yes') def NO(): print('No') def TAKAHASHI(): print('Takahashi') def AOKI(): print("Aoki") s = ns() M = ni() s_set = [set()]*11 ans = 0 ord_a = ord('A') def o(s): return ord(s)-ord_a table = {} for i in range(10): for j in range(len(s)-i): if s[j:j+i+1] in table: table[s[j:j+i+1]] += 1 else: table[s[j:j+i+1]] = 1 for i in range(M): c = ns() lc = len(c) hc = 0 hs = 0 if c in table: ans += table[c] print(ans)