結果

問題 No.430 文字列検索
ユーザー 👑 rin204rin204
提出日時 2022-02-02 16:12:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 140,800 KB
最終ジャッジ日時 2024-11-10 00:59:17
合計ジャッジ時間 2,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 159 ms
140,800 KB
testcase_02 AC 70 ms
76,416 KB
testcase_03 AC 71 ms
76,544 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 32 ms
52,480 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 33 ms
52,480 KB
testcase_08 AC 125 ms
130,648 KB
testcase_09 AC 38 ms
58,880 KB
testcase_10 AC 46 ms
67,200 KB
testcase_11 AC 92 ms
86,396 KB
testcase_12 AC 96 ms
86,324 KB
testcase_13 AC 96 ms
86,356 KB
testcase_14 AC 91 ms
81,792 KB
testcase_15 AC 85 ms
79,496 KB
testcase_16 AC 77 ms
76,944 KB
testcase_17 AC 81 ms
76,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
cnt = {}
n = len(S)
for i in range(n):
    tot = 0
    for j in range(10):
        if i + j == n:
            break
        tot *= 30
        tot += ord(S[i + j]) - 64
        cnt[tot] = cnt.get(tot, 0) + 1

ans = 0
m = int(input())
for _ in range(m):
    S = input()
    tot = 0
    for s in S:
        tot *= 30
        tot += ord(s) - 64
    ans += cnt.get(tot, 0)
print(ans)
0