結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-08-13 15:14:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 987 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,972 KB
最終ジャッジ日時 2024-09-07 11:34:27
合計ジャッジ時間 41,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 35 ms
10,752 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 35 ms
10,880 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 36 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 36 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 35 ms
10,880 KB
testcase_16 AC 35 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 34 ms
10,752 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 33 ms
10,752 KB
testcase_23 AC 942 ms
36,912 KB
testcase_24 AC 766 ms
19,404 KB
testcase_25 AC 947 ms
36,932 KB
testcase_26 AC 760 ms
19,460 KB
testcase_27 AC 725 ms
19,456 KB
testcase_28 AC 938 ms
36,740 KB
testcase_29 AC 933 ms
36,692 KB
testcase_30 AC 764 ms
19,404 KB
testcase_31 AC 752 ms
19,404 KB
testcase_32 AC 945 ms
36,816 KB
testcase_33 AC 948 ms
36,996 KB
testcase_34 AC 741 ms
19,400 KB
testcase_35 AC 942 ms
36,908 KB
testcase_36 AC 740 ms
19,476 KB
testcase_37 AC 707 ms
19,408 KB
testcase_38 AC 946 ms
37,088 KB
testcase_39 AC 731 ms
19,740 KB
testcase_40 AC 941 ms
37,164 KB
testcase_41 AC 932 ms
36,880 KB
testcase_42 AC 724 ms
19,396 KB
testcase_43 AC 582 ms
19,472 KB
testcase_44 AC 580 ms
19,676 KB
testcase_45 AC 581 ms
19,396 KB
testcase_46 AC 577 ms
19,404 KB
testcase_47 AC 575 ms
19,476 KB
testcase_48 AC 638 ms
19,580 KB
testcase_49 AC 645 ms
19,684 KB
testcase_50 AC 619 ms
19,580 KB
testcase_51 AC 631 ms
19,464 KB
testcase_52 AC 633 ms
19,476 KB
testcase_53 AC 661 ms
19,460 KB
testcase_54 AC 639 ms
19,472 KB
testcase_55 AC 670 ms
19,400 KB
testcase_56 AC 670 ms
19,400 KB
testcase_57 AC 626 ms
19,584 KB
testcase_58 AC 978 ms
50,768 KB
testcase_59 AC 959 ms
41,168 KB
testcase_60 AC 987 ms
50,824 KB
testcase_61 AC 436 ms
17,648 KB
testcase_62 AC 673 ms
19,688 KB
testcase_63 AC 676 ms
19,468 KB
testcase_64 AC 676 ms
19,520 KB
testcase_65 AC 980 ms
50,972 KB
testcase_66 AC 822 ms
35,360 KB
testcase_67 AC 714 ms
25,880 KB
testcase_68 AC 691 ms
23,880 KB
testcase_69 AC 678 ms
22,656 KB
testcase_70 AC 947 ms
41,192 KB
testcase_71 AC 960 ms
41,268 KB
testcase_72 AC 943 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def z_algorithm(S):
    A = [0] * len(S)
    A[0] = len(S)
    i = 1
    j = 0
    while i < len(S):
        while i + j < len(S) and S[j] == S[i + j]:
            j += 1
        A[i] = j
        if j == 0:
            i += 1
            continue

        k = 1
        while i + k < len(S) and k + A[k] < j:
            A[i + k] = A[k]
            k += 1
        
        i += k
        j -= k
    return A

def main():      
    s=input().strip()
    n=len(s)
    a=z_algorithm(s)
    mod=998244353
    ans = mod - n + 1
    add = 10
    for i in range(n-1,-1,-1):
        if a[i] + i >= n:
             ans += add
             ans %= mod
        add *= 10
        add %= mod
    print(ans)
    

if __name__ == "__main__":
    main()
0