結果
問題 | No.3112 区間和係数多項式? |
ユーザー | Shirotsume |
提出日時 | 2024-03-04 15:54:11 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,445 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 81,992 KB |
実行使用メモリ | 352,708 KB |
最終ジャッジ日時 | 2024-09-29 17:23:13 |
合計ジャッジ時間 | 10,046 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,704 KB |
testcase_01 | AC | 38 ms
54,312 KB |
testcase_02 | AC | 37 ms
52,700 KB |
testcase_03 | AC | 38 ms
52,412 KB |
testcase_04 | AC | 38 ms
53,276 KB |
testcase_05 | AC | 38 ms
53,008 KB |
testcase_06 | AC | 38 ms
52,668 KB |
testcase_07 | AC | 39 ms
52,276 KB |
testcase_08 | AC | 39 ms
53,040 KB |
testcase_09 | AC | 38 ms
53,356 KB |
testcase_10 | AC | 38 ms
53,208 KB |
testcase_11 | AC | 39 ms
53,692 KB |
testcase_12 | AC | 46 ms
60,456 KB |
testcase_13 | AC | 67 ms
72,216 KB |
testcase_14 | AC | 83 ms
76,416 KB |
testcase_15 | AC | 119 ms
77,416 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
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 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 + 1) 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 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], j) * 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): if i >= 1: A.add(i - 1, x - a[i]) a[i] = x print(f(j, y)) i *= d2 i %= n j *= d3 j %= n x *= d4 x %= b y *= d5 y %= b