結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-05-20 01:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 85,116 KB
最終ジャッジ日時 2024-09-07 11:32:49
合計ジャッジ時間 8,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,684 KB
testcase_01 AC 38 ms
52,964 KB
testcase_02 AC 35 ms
52,344 KB
testcase_03 AC 41 ms
60,300 KB
testcase_04 AC 33 ms
53,808 KB
testcase_05 AC 40 ms
60,840 KB
testcase_06 AC 39 ms
59,552 KB
testcase_07 AC 42 ms
62,244 KB
testcase_08 AC 35 ms
54,136 KB
testcase_09 AC 43 ms
61,012 KB
testcase_10 AC 45 ms
62,964 KB
testcase_11 AC 43 ms
60,308 KB
testcase_12 AC 43 ms
61,400 KB
testcase_13 AC 42 ms
61,180 KB
testcase_14 AC 41 ms
61,108 KB
testcase_15 AC 44 ms
61,304 KB
testcase_16 AC 45 ms
61,444 KB
testcase_17 AC 42 ms
60,116 KB
testcase_18 AC 42 ms
60,124 KB
testcase_19 AC 43 ms
61,648 KB
testcase_20 AC 40 ms
60,196 KB
testcase_21 AC 43 ms
62,120 KB
testcase_22 AC 42 ms
61,448 KB
testcase_23 AC 84 ms
84,692 KB
testcase_24 AC 91 ms
85,032 KB
testcase_25 AC 75 ms
84,600 KB
testcase_26 AC 89 ms
84,720 KB
testcase_27 AC 100 ms
84,768 KB
testcase_28 AC 82 ms
84,588 KB
testcase_29 AC 84 ms
84,920 KB
testcase_30 AC 95 ms
84,604 KB
testcase_31 AC 95 ms
84,892 KB
testcase_32 AC 90 ms
84,376 KB
testcase_33 AC 90 ms
84,792 KB
testcase_34 AC 94 ms
84,856 KB
testcase_35 AC 87 ms
84,456 KB
testcase_36 AC 96 ms
84,716 KB
testcase_37 AC 93 ms
84,708 KB
testcase_38 AC 88 ms
84,520 KB
testcase_39 AC 94 ms
84,692 KB
testcase_40 AC 86 ms
84,564 KB
testcase_41 AC 83 ms
84,852 KB
testcase_42 AC 87 ms
84,688 KB
testcase_43 AC 72 ms
84,520 KB
testcase_44 AC 72 ms
84,688 KB
testcase_45 AC 75 ms
84,580 KB
testcase_46 AC 75 ms
84,464 KB
testcase_47 AC 73 ms
84,992 KB
testcase_48 AC 73 ms
84,788 KB
testcase_49 AC 72 ms
84,388 KB
testcase_50 AC 74 ms
84,792 KB
testcase_51 AC 78 ms
84,640 KB
testcase_52 AC 76 ms
84,436 KB
testcase_53 AC 70 ms
84,504 KB
testcase_54 AC 76 ms
84,564 KB
testcase_55 AC 71 ms
84,260 KB
testcase_56 AC 70 ms
84,480 KB
testcase_57 AC 79 ms
85,116 KB
testcase_58 AC 532 ms
84,388 KB
testcase_59 AC 84 ms
84,640 KB
testcase_60 AC 83 ms
84,464 KB
testcase_61 AC 59 ms
82,216 KB
testcase_62 AC 66 ms
84,544 KB
testcase_63 AC 64 ms
84,720 KB
testcase_64 AC 67 ms
84,500 KB
testcase_65 AC 524 ms
84,508 KB
testcase_66 AC 302 ms
84,280 KB
testcase_67 AC 170 ms
84,112 KB
testcase_68 AC 134 ms
84,296 KB
testcase_69 AC 114 ms
84,444 KB
testcase_70 AC 84 ms
84,512 KB
testcase_71 AC 83 ms
84,708 KB
testcase_72 AC 84 ms
84,592 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 += pow(10,n-i,mod)
             ans %= mod
    print(ans)
    

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