結果
問題 | No.2959 Dolls' Tea Party |
ユーザー | sasa8uyauya |
提出日時 | 2024-11-08 22:18:49 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,450 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 60,640 KB |
最終ジャッジ日時 | 2024-11-08 22:18:55 |
合計ジャッジ時間 | 5,551 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
60,640 KB |
testcase_01 | AC | 41 ms
52,864 KB |
testcase_02 | AC | 46 ms
53,632 KB |
testcase_03 | AC | 45 ms
54,144 KB |
testcase_04 | AC | 42 ms
53,120 KB |
testcase_05 | AC | 41 ms
53,504 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
mod = 998244353 R = 3 Rinv = 332748118 W = [pow(R, (mod-1)>>i, mod) for i in range(24)] Winv = [pow(Rinv, (mod-1)>>i, mod) for i in range(24)] def fft(k, f): for l in range(k, 0, -1): d = 1<<l-1 U = [1] for i in range(d): U.append(U[-1]*W[l]%mod) for i in range(1<<k-l): for j in range(d): s = i*2*d+j f[s], f[s+d] = (f[s]+f[s+d])%mod, U[j]*(f[s]-f[s+d])%mod def fftinv(k, f): for l in range(1, k+1): d = 1<<l-1 for i in range(1<<k-l): u = 1 for j in range(i*2*d, (i*2+1)*d): f[j+d] *= u f[j], f[j+d] = (f[j]+f[j+d])%mod, (f[j]-f[j+d])%mod u *= Winv[l] u %= mod def convolution(a, b): le = len(a)+len(b)-1 k = le.bit_length() n = 1<<k a = a+[0]*(n-len(a)) b = b+[0]*(n-len(b)) fft(k, a) fft(k, b) for i in range(n): a[i] *= b[i] a[i] %= mod fftinv(k, a) ninv = pow(n, mod-2, mod) for i in range(le): a[i] *= ninv a[i] %= mod return a[:le] n,K=map(int,input().split()) a=[min(K,int(x)) for x in input().split()] M=998244353 fa=[1,1] fb=[1,1] for i in range(2,K+1): fa+=[fa[-1]*i%M] fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M] fc=lambda n,k:fa[n]*fb[k]*fb[n-k]%M if n>=k>=0 else 0 g=[0]*(K+1) for i in range(1,K+1): if K%i==0: q=[1] for v in a: q=convolution(q,[1]+[fb[j] for j in range(1,v//(K//i)+1)])[:i+1] if len(q)>=i+1: g[i]=q[i]*fa[i]%M ans=0 from math import gcd for i in range(K): ans+=g[gcd(i,K)] ans%=M print(ans*pow(K,M-2,M)%M)