結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-08-13 15:12:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 632 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,052 KB
最終ジャッジ日時 2024-09-07 11:33:45
合計ジャッジ時間 23,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 33 ms
11,008 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 33 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 31 ms
10,496 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 320 ms
36,980 KB
testcase_24 AC 252 ms
19,420 KB
testcase_25 AC 320 ms
37,104 KB
testcase_26 AC 265 ms
19,496 KB
testcase_27 AC 254 ms
19,636 KB
testcase_28 AC 319 ms
36,996 KB
testcase_29 AC 319 ms
36,804 KB
testcase_30 AC 256 ms
19,420 KB
testcase_31 AC 254 ms
19,540 KB
testcase_32 AC 320 ms
36,776 KB
testcase_33 AC 322 ms
36,964 KB
testcase_34 AC 257 ms
19,348 KB
testcase_35 AC 322 ms
36,828 KB
testcase_36 AC 256 ms
19,364 KB
testcase_37 AC 261 ms
19,412 KB
testcase_38 AC 317 ms
37,136 KB
testcase_39 AC 274 ms
19,360 KB
testcase_40 AC 318 ms
36,888 KB
testcase_41 AC 320 ms
37,000 KB
testcase_42 AC 265 ms
19,424 KB
testcase_43 AC 237 ms
19,528 KB
testcase_44 AC 236 ms
19,508 KB
testcase_45 AC 240 ms
19,364 KB
testcase_46 AC 238 ms
19,596 KB
testcase_47 AC 235 ms
19,348 KB
testcase_48 AC 247 ms
39,528 KB
testcase_49 AC 245 ms
41,304 KB
testcase_50 AC 241 ms
35,040 KB
testcase_51 AC 244 ms
37,744 KB
testcase_52 AC 243 ms
37,576 KB
testcase_53 AC 246 ms
45,960 KB
testcase_54 AC 242 ms
38,780 KB
testcase_55 AC 248 ms
49,380 KB
testcase_56 AC 247 ms
48,680 KB
testcase_57 AC 242 ms
35,992 KB
testcase_58 TLE -
testcase_59 AC 322 ms
41,152 KB
testcase_60 AC 342 ms
51,052 KB
testcase_61 AC 186 ms
17,756 KB
testcase_62 AC 248 ms
50,660 KB
testcase_63 AC 250 ms
50,764 KB
testcase_64 AC 249 ms
50,800 KB
testcase_65 TLE -
testcase_66 AC 1,454 ms
51,012 KB
testcase_67 AC 727 ms
50,988 KB
testcase_68 AC 593 ms
50,788 KB
testcase_69 AC 486 ms
51,004 KB
testcase_70 AC 323 ms
41,244 KB
testcase_71 AC 322 ms
41,284 KB
testcase_72 AC 322 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def construct_mp(W):
    L = len(W)
    T = [0]*(L+1)
    T[0] = j = -1
    for i in range(L):
        while j >= 0 and W[i] != W[j]:
            j = T[j]
        j += 1
        T[i+1] = j
    return T

def main():
    s=input().strip()
    mod = 998244353
    mp = construct_mp(s)
    ans = pow(10,len(s),mod) - len(s) + 1
    now = len(s)
    while mp[now] > 0:
        ans += pow(10,mp[now],mod)
        ans %= mod
        now = mp[now]
    print(ans)
    
if __name__ == "__main__":
    main()
0