結果

問題 No.3112 区間和係数多項式?
ユーザー ShirotsumeShirotsume
提出日時 2024-03-12 23:43:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,942 ms / 6,000 ms
コード長 1,473 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 319,876 KB
最終ジャッジ日時 2024-09-29 22:30:50
合計ジャッジ時間 57,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 36 ms
52,864 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 44 ms
59,904 KB
testcase_13 AC 53 ms
65,792 KB
testcase_14 AC 67 ms
76,324 KB
testcase_15 AC 69 ms
76,544 KB
testcase_16 AC 3,929 ms
315,024 KB
testcase_17 AC 3,497 ms
316,272 KB
testcase_18 AC 4,363 ms
316,048 KB
testcase_19 AC 3,572 ms
316,180 KB
testcase_20 AC 3,670 ms
315,520 KB
testcase_21 AC 4,942 ms
316,316 KB
testcase_22 AC 4,041 ms
314,124 KB
testcase_23 AC 4,622 ms
315,460 KB
testcase_24 AC 4,317 ms
319,876 KB
testcase_25 AC 4,245 ms
319,752 KB
testcase_26 AC 2,784 ms
312,844 KB
testcase_27 AC 2,750 ms
313,104 KB
testcase_28 AC 2,432 ms
313,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, b, q = map(int, input().split())
c1, d1 = map(int, input().split())
c2, d2 = map(int, input().split())
c3, d3 = map(int, input().split())
c4, d4 = map(int, input().split())
c5, d5 = map(int, input().split())

class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]
    def add(self,p,x):
        p+=1
        while(p<=self.n):
            self.data[p-1]+=x
            p+=p& -p
    def sum(self,l,r):
        return self.sum0(r)-self.sum0(l)
    def sump(self,r):
        
        return self.data[r - 1]
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

a = [c1]

for i in range(n - 1):
    a.append(a[-1] * d1 % b)
A = fenwick_tree(n)
for i in range(1,n):
    A.add(i - 1, a[i])

def p(x):
    # the number of trailing zeros
    #x: int
    X = x
    if x==0:
        return 0
    res=0
    v = 1
    while(x%2==0):
        x//=2
        res+=1
        v *= 2
    return X - v
P = [p(i) for i in range(n + 1)]

i, j, x, y = c2 % n, c3 % n, c4 % b, c5 % b
ans = 0
for _ in range(q):
    
    if i >= 1:
        A.add(i - 1, x - a[i])
    a[i] = x
    ans = 0
    yy = 1
    jj = j
    while jj:
        ans += A.sump(jj) * yy
        jj = P[jj]
        yy *= y
        yy %= b
    ans += yy * a[0]
    print(ans % b)
    i *= d2
    i %= n
    j *= d3
    j %= n
    x *= d4
    x %= b
    y *= d5
    y %= b
0