結果
問題 | No.2905 Nabeatsu Integration |
ユーザー | vwxyz |
提出日時 | 2024-09-27 22:33:32 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 966 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 146,748 KB |
最終ジャッジ日時 | 2024-09-27 22:33:58 |
合計ジャッジ時間 | 14,352 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,156 KB |
testcase_01 | AC | 39 ms
53,024 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | MLE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | MLE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | MLE | - |
testcase_35 | RE | - |
testcase_36 | MLE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | MLE | - |
testcase_44 | MLE | - |
testcase_45 | MLE | - |
testcase_46 | MLE | - |
testcase_47 | MLE | - |
testcase_48 | WA | - |
testcase_49 | RE | - |
testcase_50 | MLE | - |
testcase_51 | RE | - |
testcase_52 | MLE | - |
testcase_53 | RE | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | MLE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
ソースコード
def Z_algorithm(lst): le=len(lst) LCP=[None]*le LCP[0]=le L,R=0,0 for i in range(1,le): if i<R: x=LCP[i-L] if x<R-i: LCP[i]=x elif R-i<x: LCP[i]=R-i else: while R<le and lst[R-i]==lst[R]: R+=1 LCP[i]=R-i L=i else: R=max(R,i) while R<le and lst[R-i]==lst[R]: R+=1 LCP[i]=R-i L=i return LCP S=input() lcp=Z_algorithm(S) lcp[0]=0 mod=998244353 N=len(S) A=[None]*(N+1) B=[None]*(N+1) A[0]=1 B[0]=0 inve10=pow(10,mod-2,mod) for i in range(N): if S[i]==S[0]: A[i+1]=(10*A[i]-9*A[lcp[i]])%mod B[i+1]=(10*B[i]-9*B[lcp[i]]-10)%mod else: A[i+1]=(10*A[i]-8*A[lcp[i]]-A[1])%mod B[i+1]=(10*B[i]-8*B[lcp[i]]-B[1]-10)%mod ans=(-B[N])*pow(A[N],mod-2,mod)%mod ans-=(N-1) ans%=mod print(ans)