結果

問題 No.962 LCPs
ユーザー H3PO4H3PO4
提出日時 2021-07-25 16:27:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 76,868 KB
最終ジャッジ日時 2024-07-21 00:41:08
合計ジャッジ時間 19,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
13,824 KB
testcase_01 AC 46 ms
13,824 KB
testcase_02 AC 47 ms
13,824 KB
testcase_03 AC 46 ms
13,824 KB
testcase_04 AC 49 ms
13,824 KB
testcase_05 AC 45 ms
13,824 KB
testcase_06 AC 45 ms
13,824 KB
testcase_07 AC 46 ms
13,952 KB
testcase_08 AC 46 ms
13,952 KB
testcase_09 AC 46 ms
13,824 KB
testcase_10 AC 45 ms
13,824 KB
testcase_11 AC 46 ms
13,824 KB
testcase_12 AC 46 ms
14,080 KB
testcase_13 AC 46 ms
13,824 KB
testcase_14 AC 47 ms
13,952 KB
testcase_15 AC 45 ms
13,952 KB
testcase_16 AC 47 ms
14,080 KB
testcase_17 AC 580 ms
14,080 KB
testcase_18 AC 394 ms
13,824 KB
testcase_19 AC 404 ms
13,824 KB
testcase_20 AC 353 ms
13,824 KB
testcase_21 AC 369 ms
13,824 KB
testcase_22 AC 315 ms
13,952 KB
testcase_23 AC 323 ms
13,824 KB
testcase_24 AC 318 ms
13,952 KB
testcase_25 AC 296 ms
13,824 KB
testcase_26 AC 270 ms
13,824 KB
testcase_27 AC 306 ms
13,824 KB
testcase_28 AC 274 ms
13,824 KB
testcase_29 AC 268 ms
13,824 KB
testcase_30 AC 309 ms
13,952 KB
testcase_31 AC 358 ms
13,824 KB
testcase_32 AC 262 ms
13,824 KB
testcase_33 AC 414 ms
13,952 KB
testcase_34 AC 277 ms
13,952 KB
testcase_35 AC 267 ms
13,824 KB
testcase_36 AC 283 ms
13,824 KB
testcase_37 AC 330 ms
32,640 KB
testcase_38 AC 329 ms
32,512 KB
testcase_39 AC 387 ms
32,512 KB
testcase_40 AC 363 ms
32,512 KB
testcase_41 AC 352 ms
32,640 KB
testcase_42 AC 342 ms
32,512 KB
testcase_43 AC 362 ms
32,384 KB
testcase_44 AC 334 ms
32,512 KB
testcase_45 AC 328 ms
32,512 KB
testcase_46 AC 325 ms
32,640 KB
testcase_47 AC 410 ms
62,464 KB
testcase_48 AC 393 ms
56,832 KB
testcase_49 AC 461 ms
69,632 KB
testcase_50 AC 523 ms
71,680 KB
testcase_51 AC 440 ms
63,232 KB
testcase_52 AC 304 ms
48,512 KB
testcase_53 AC 425 ms
64,768 KB
testcase_54 AC 364 ms
57,088 KB
testcase_55 AC 285 ms
45,952 KB
testcase_56 AC 515 ms
74,152 KB
testcase_57 AC 152 ms
13,952 KB
testcase_58 AC 151 ms
13,952 KB
testcase_59 AC 173 ms
13,952 KB
testcase_60 AC 193 ms
13,952 KB
testcase_61 AC 185 ms
13,952 KB
testcase_62 AC 181 ms
13,952 KB
testcase_63 AC 385 ms
13,952 KB
testcase_64 AC 535 ms
76,868 KB
testcase_65 AC 385 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from dataclasses import dataclass, field

N = int(input())
ans = 0

tri = lambda x: x * (x + 1) // 2


@dataclass
class TrieNode:
    num: int
    last: int
    seq: int
    child: dict = field(default_factory=dict)


G = [None] * (2 * 10 ** 5 + 1)
G[0] = TrieNode(num=0, last=0, seq=0)

nodenum = 1
for i in range(N):
    S = input()
    pointer = 0
    for s in S:
        if s not in G[pointer].child:
            G[pointer].child[s] = nodenum
            G[nodenum] = TrieNode(num=nodenum, last=i - 1, seq=0)
            nodenum += 1
        pointer = G[pointer].child[s]
        if G[pointer].last == i - 1:
            G[pointer].seq += 1
        else:
            G[pointer].seq = 1
        ans += tri(G[pointer].seq)
        G[pointer].last = i
print(ans)
0