結果

問題 No.3112 区間和係数多項式?
ユーザー ShirotsumeShirotsume
提出日時 2024-03-04 15:47:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,895 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 159,216 KB
最終ジャッジ日時 2024-03-04 15:48:11
合計ジャッジ時間 7,933 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
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 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from __pypy__.builders import StringBuilder
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())
import sys
from os import read as os_read, write as os_write
from atexit import register as atexist_register
class Fastio:
    ibuf = bytes()
    pil = pir = 0
    sb = StringBuilder()
    def load(self):
        self.ibuf = self.ibuf[self.pil:]
        self.ibuf += os_read(0, 131072)
        self.pil = 0; self.pir = len(self.ibuf)
    def flush(self): os_write(1, self.sb.build().encode())
    def fastin(self):
        if self.pir - self.pil < 64: self.load()
        minus = x = 0
        while self.ibuf[self.pil] < 45: self.pil += 1
        if self.ibuf[self.pil] == 45: minus = 1; self.pil += 1
        while self.ibuf[self.pil] >= 48:
            x = x * 10 + (self.ibuf[self.pil] & 15)
            self.pil += 1
        if minus: return -x
        return x
    def fastin_string(self):
        if self.pir - self.pil < 64: self.load()
        while self.ibuf[self.pil] <= 32: self.pil += 1
        res = bytearray()
        while self.ibuf[self.pil] > 32:
            if self.pir - self.pil < 64: self.load()
            res.append(self.ibuf[self.pil])
            self.pil += 1
        return res
    def fastout(self, x): self.sb.append(str(x))
    def fastoutln(self, x): self.sb.append(str(x)); self.sb.append('\n')
fastio = Fastio()
rd = fastio.fastin; rds = fastio.fastin_string; wt = fastio.fastout; wtn = fastio.fastoutln; flush = fastio.flush
atexist_register(flush)
sys.stdin = None; sys.stdout = None
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 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(n):
    A.add(i, a[i])

def p(x):
    # the number of trailing zeros
    #x: int
    X = x
    if x==0:
        return 0
    res=0
    while(x%2==0):
        x//=2
        res+=1
    
    return X - 2 ** res
P = [p(i) for i in range(n + 1)]
    
def f(j, y):
    ans = 0
    yy = 1
    while j:
        ans += A.sum(P[j] + 1, j + 1) * yy
        ans %= b
        j = P[j]
        yy *= y
        yy %= b
    ans += yy * a[0]
    return ans % b
    
i, j, x, y = c2 % n, c3 % n, c4 % b, c5 % b
ans = 0
for _ in range(q):
    A.add(i, x - a[i])
    a[i] = x
    ans ^= f(j, y)
    i *= d2
    i %= n
    j *= d3
    j %= n
    x *= d4
    x %= b
    y *= d5
    y %= b

print(ans)
0