結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2024-08-21 23:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 95,020 KB
最終ジャッジ日時 2024-09-07 11:34:02
合計ジャッジ時間 10,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
68,524 KB
testcase_01 AC 60 ms
67,064 KB
testcase_02 AC 58 ms
67,996 KB
testcase_03 AC 65 ms
72,772 KB
testcase_04 AC 56 ms
67,444 KB
testcase_05 AC 64 ms
72,524 KB
testcase_06 AC 63 ms
71,708 KB
testcase_07 AC 66 ms
73,448 KB
testcase_08 AC 56 ms
68,180 KB
testcase_09 AC 67 ms
73,336 KB
testcase_10 AC 68 ms
72,756 KB
testcase_11 AC 64 ms
72,148 KB
testcase_12 AC 67 ms
72,440 KB
testcase_13 AC 65 ms
71,396 KB
testcase_14 AC 65 ms
71,940 KB
testcase_15 AC 65 ms
72,892 KB
testcase_16 AC 70 ms
73,704 KB
testcase_17 AC 68 ms
72,072 KB
testcase_18 AC 69 ms
72,444 KB
testcase_19 AC 69 ms
73,604 KB
testcase_20 AC 63 ms
70,696 KB
testcase_21 AC 66 ms
73,100 KB
testcase_22 AC 70 ms
72,780 KB
testcase_23 AC 130 ms
94,528 KB
testcase_24 AC 142 ms
94,464 KB
testcase_25 AC 114 ms
94,732 KB
testcase_26 AC 140 ms
94,520 KB
testcase_27 AC 146 ms
94,472 KB
testcase_28 AC 128 ms
94,868 KB
testcase_29 AC 129 ms
95,004 KB
testcase_30 AC 130 ms
94,528 KB
testcase_31 AC 136 ms
94,676 KB
testcase_32 AC 132 ms
94,604 KB
testcase_33 AC 128 ms
94,668 KB
testcase_34 AC 142 ms
94,592 KB
testcase_35 AC 127 ms
94,620 KB
testcase_36 AC 134 ms
94,468 KB
testcase_37 AC 136 ms
94,532 KB
testcase_38 AC 125 ms
94,904 KB
testcase_39 AC 136 ms
94,664 KB
testcase_40 AC 127 ms
95,020 KB
testcase_41 AC 128 ms
94,408 KB
testcase_42 AC 133 ms
94,872 KB
testcase_43 AC 117 ms
94,728 KB
testcase_44 AC 113 ms
94,728 KB
testcase_45 AC 121 ms
94,904 KB
testcase_46 AC 121 ms
94,928 KB
testcase_47 AC 127 ms
94,608 KB
testcase_48 AC 134 ms
94,524 KB
testcase_49 AC 128 ms
94,548 KB
testcase_50 AC 128 ms
94,668 KB
testcase_51 AC 128 ms
94,728 KB
testcase_52 AC 126 ms
94,464 KB
testcase_53 AC 132 ms
94,456 KB
testcase_54 AC 128 ms
94,932 KB
testcase_55 AC 127 ms
95,008 KB
testcase_56 AC 126 ms
95,000 KB
testcase_57 AC 128 ms
94,616 KB
testcase_58 AC 115 ms
94,392 KB
testcase_59 AC 129 ms
94,816 KB
testcase_60 AC 129 ms
94,864 KB
testcase_61 AC 99 ms
91,104 KB
testcase_62 AC 131 ms
94,528 KB
testcase_63 AC 130 ms
94,540 KB
testcase_64 AC 129 ms
94,528 KB
testcase_65 AC 119 ms
94,952 KB
testcase_66 AC 127 ms
94,816 KB
testcase_67 AC 126 ms
94,740 KB
testcase_68 AC 129 ms
94,668 KB
testcase_69 AC 128 ms
94,668 KB
testcase_70 AC 127 ms
94,876 KB
testcase_71 AC 126 ms
94,820 KB
testcase_72 AC 125 ms
94,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing


def z_algorithm(s: typing.Union[str, typing.List[int]]) -> typing.List[int]:
    '''
    Z algorithm
    Reference:
    D. Gusfield,
    Algorithms on Strings, Trees, and Sequences: Computer Science and
    Computational Biology
    '''

    if isinstance(s, str):
        s = [ord(c) for c in s]

    n = len(s)
    if n == 0:
        return []

    z = [0] * n
    j = 0
    for i in range(1, n):
        z[i] = 0 if j + z[j] <= i else min(j + z[j] - i, z[i - j])
        while i + z[i] < n and s[z[i]] == s[i + z[i]]:
            z[i] += 1
        if j + z[j] < i + z[i]:
            j = i
    z[0] = n

    return z


MOD=998244353

s=input()
n=len(s)
z=z_algorithm(s)
ans=MOD-n+1
p=10
for i in range(1,n+1):
    if z[n-i]==i:
        ans+=p
        ans%=MOD
    p*=10
    p%=MOD
print(ans)
0