結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-06-04 11:36:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 85,244 KB
最終ジャッジ日時 2024-09-07 11:32:39
合計ジャッジ時間 8,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,344 KB
testcase_01 AC 36 ms
52,596 KB
testcase_02 AC 34 ms
53,020 KB
testcase_03 AC 41 ms
60,720 KB
testcase_04 AC 35 ms
52,984 KB
testcase_05 AC 45 ms
62,092 KB
testcase_06 AC 43 ms
61,240 KB
testcase_07 AC 45 ms
61,672 KB
testcase_08 AC 38 ms
53,340 KB
testcase_09 AC 44 ms
62,212 KB
testcase_10 AC 44 ms
62,588 KB
testcase_11 AC 42 ms
60,680 KB
testcase_12 AC 41 ms
62,572 KB
testcase_13 AC 42 ms
61,724 KB
testcase_14 AC 45 ms
61,948 KB
testcase_15 AC 42 ms
61,296 KB
testcase_16 AC 46 ms
61,888 KB
testcase_17 AC 43 ms
61,308 KB
testcase_18 AC 43 ms
61,492 KB
testcase_19 AC 44 ms
61,752 KB
testcase_20 AC 40 ms
59,640 KB
testcase_21 AC 42 ms
61,460 KB
testcase_22 AC 43 ms
61,436 KB
testcase_23 AC 101 ms
84,488 KB
testcase_24 AC 108 ms
85,244 KB
testcase_25 AC 93 ms
84,408 KB
testcase_26 AC 105 ms
84,472 KB
testcase_27 AC 106 ms
84,476 KB
testcase_28 AC 101 ms
84,336 KB
testcase_29 AC 102 ms
84,724 KB
testcase_30 AC 111 ms
84,844 KB
testcase_31 AC 106 ms
84,512 KB
testcase_32 AC 102 ms
84,452 KB
testcase_33 AC 101 ms
84,380 KB
testcase_34 AC 110 ms
84,520 KB
testcase_35 AC 102 ms
84,336 KB
testcase_36 AC 109 ms
84,512 KB
testcase_37 AC 109 ms
84,916 KB
testcase_38 AC 100 ms
84,328 KB
testcase_39 AC 104 ms
85,108 KB
testcase_40 AC 103 ms
84,928 KB
testcase_41 AC 101 ms
84,268 KB
testcase_42 AC 103 ms
84,544 KB
testcase_43 AC 87 ms
84,552 KB
testcase_44 AC 90 ms
84,644 KB
testcase_45 AC 93 ms
84,640 KB
testcase_46 AC 91 ms
85,128 KB
testcase_47 AC 90 ms
84,852 KB
testcase_48 AC 87 ms
84,764 KB
testcase_49 AC 92 ms
84,244 KB
testcase_50 AC 95 ms
84,820 KB
testcase_51 AC 91 ms
84,644 KB
testcase_52 AC 88 ms
84,468 KB
testcase_53 AC 88 ms
84,364 KB
testcase_54 AC 90 ms
84,856 KB
testcase_55 AC 82 ms
84,692 KB
testcase_56 AC 85 ms
84,604 KB
testcase_57 AC 89 ms
84,392 KB
testcase_58 AC 110 ms
84,400 KB
testcase_59 AC 99 ms
84,200 KB
testcase_60 AC 97 ms
84,616 KB
testcase_61 AC 70 ms
82,488 KB
testcase_62 AC 81 ms
84,516 KB
testcase_63 AC 81 ms
84,564 KB
testcase_64 AC 85 ms
84,512 KB
testcase_65 AC 103 ms
84,540 KB
testcase_66 AC 102 ms
84,236 KB
testcase_67 AC 88 ms
84,364 KB
testcase_68 AC 88 ms
84,448 KB
testcase_69 AC 86 ms
84,240 KB
testcase_70 AC 102 ms
84,428 KB
testcase_71 AC 98 ms
84,708 KB
testcase_72 AC 108 ms
84,792 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