結果

問題 No.430 文字列検索
ユーザー ヒッキープログラミングするスレヒッキープログラミングするスレ
提出日時 2016-10-02 23:36:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 280 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-11-10 00:04:27
合計ジャッジ時間 17,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,600 KB
testcase_01 AC 178 ms
76,876 KB
testcase_02 TLE -
testcase_03 AC 1,389 ms
76,396 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 64 ms
70,272 KB
testcase_09 AC 41 ms
53,120 KB
testcase_10 AC 49 ms
60,928 KB
testcase_11 AC 1,274 ms
76,264 KB
testcase_12 AC 1,262 ms
76,876 KB
testcase_13 AC 1,259 ms
76,560 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

al = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

mp = {}

for c in al:
    mp[c] = []

s = input()
m = int(input())
for _ in range(m):
    c = input()
    mp[c[0]].append(c)

ans = 0
for i in range(len(s)):
    for x in mp[s[i]]:
        if x == s[i:i + len(x)]:
            ans += 1
print(ans)
0