結果

問題 No.3112 区間和係数多項式?
ユーザー 👑 p-adicp-adic
提出日時 2024-02-05 16:44:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,652 ms / 6,000 ms
コード長 423 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 400,592 KB
最終ジャッジ日時 2024-09-29 21:31:31
合計ジャッジ時間 38,127 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,528 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 35 ms
52,224 KB
testcase_11 AC 35 ms
52,864 KB
testcase_12 AC 37 ms
53,376 KB
testcase_13 AC 54 ms
65,024 KB
testcase_14 AC 57 ms
67,712 KB
testcase_15 AC 58 ms
69,248 KB
testcase_16 AC 2,107 ms
400,072 KB
testcase_17 AC 2,410 ms
400,196 KB
testcase_18 AC 2,379 ms
400,576 KB
testcase_19 AC 2,336 ms
400,524 KB
testcase_20 AC 2,372 ms
400,560 KB
testcase_21 AC 2,652 ms
400,452 KB
testcase_22 AC 2,255 ms
400,080 KB
testcase_23 AC 2,169 ms
400,592 KB
testcase_24 AC 2,558 ms
400,324 KB
testcase_25 AC 2,648 ms
400,196 KB
testcase_26 AC 1,528 ms
400,576 KB
testcase_27 AC 1,457 ms
400,444 KB
testcase_28 AC 1,408 ms
400,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]
F=[0]
for j in R(1,N):
	i=j-1
	F+=[A[j]]
	while i>j-(j&-j):
		F[j]+=F[i]
		i-=i&-i
i,r=J()
j,s=J()
x,t=J()
y,u=J()
for q in R(Q):
	k=i%N
	d=x-A[k]
	A[k]=x
	if k:
		while k<N:F[k],k=(F[k]+d)%B,k+(k&-k)
	else:E=(E+d)%B
	f=0
	p=1
	k=j%N
	while k:f,p,k=f+p*F[k],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
0