結果
問題 | No.3112 区間和係数多項式? |
ユーザー | 👑 p-adic |
提出日時 | 2024-02-05 21:17:24 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 607 bytes |
コンパイル時間 | 424 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 582,220 KB |
最終ジャッジ日時 | 2024-09-29 21:34:35 |
合計ジャッジ時間 | 42,735 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,096 KB |
testcase_01 | AC | 35 ms
52,480 KB |
testcase_02 | AC | 34 ms
52,352 KB |
testcase_03 | AC | 34 ms
52,608 KB |
testcase_04 | AC | 36 ms
51,840 KB |
testcase_05 | AC | 35 ms
51,840 KB |
testcase_06 | AC | 33 ms
52,608 KB |
testcase_07 | AC | 35 ms
52,864 KB |
testcase_08 | AC | 34 ms
51,840 KB |
testcase_09 | AC | 34 ms
52,224 KB |
testcase_10 | AC | 39 ms
52,864 KB |
testcase_11 | AC | 40 ms
57,344 KB |
testcase_12 | AC | 36 ms
53,760 KB |
testcase_13 | AC | 56 ms
68,480 KB |
testcase_14 | AC | 63 ms
72,832 KB |
testcase_15 | AC | 80 ms
76,928 KB |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
ソースコード
R=range J=lambda:map(int,input().split()) N,B,Q=J() E,D=J() A=[E] for i in R(N-1):A+=[A[-1]*D%B] P=1 while N-1>P:P*=2 T=[0]*P*2 for i in R(0,N-1):T[P|i]=A[i+1] for j in R(P-1,0,-1):T[j]=(T[j*2]+T[j*2+1])%B def G(l,r): l|=P r+=P+1 a=b=0 while l<r: if l&1:a,l=a+T[l],l+1 if r&1:b,r=T[r-1]+a,r-1 l,r=l>>1,r>>1 return(a+b)%B i,r=J() i%=N j,s=J() x,t=J() y,u=J() for q in R(Q): k=P+i-1 if i: T[k],k=x,k//2 while k:T[k],k=(T[k*2]+T[k*2+1])%B,k//2 else:E=(E+x-A[i])%B A[i]=x f=0 p=1 k=j%N while k:f,p,k=f+p*G(k-(k&-k),k-1),p*y%B,k-(k&-k) print((f+p*E)%B) i=i*r%N j=j*s%N x=x*t%B y=y*u%B