結果

問題 No.2206 Popcount Sum 2
ユーザー とりゐとりゐ
提出日時 2023-01-16 20:39:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,184 ms / 4,000 ms
コード長 1,126 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 123,516 KB
最終ジャッジ日時 2024-07-02 14:38:55
合計ジャッジ時間 15,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
88,192 KB
testcase_01 AC 84 ms
88,320 KB
testcase_02 AC 189 ms
103,808 KB
testcase_03 AC 193 ms
103,936 KB
testcase_04 AC 189 ms
103,936 KB
testcase_05 AC 1,170 ms
123,516 KB
testcase_06 AC 1,169 ms
123,004 KB
testcase_07 AC 1,184 ms
123,004 KB
testcase_08 AC 1,181 ms
123,132 KB
testcase_09 AC 1,176 ms
123,124 KB
testcase_10 AC 782 ms
122,432 KB
testcase_11 AC 777 ms
122,696 KB
testcase_12 AC 778 ms
122,576 KB
testcase_13 AC 713 ms
123,324 KB
testcase_14 AC 708 ms
123,068 KB
testcase_15 AC 708 ms
122,948 KB
testcase_16 AC 572 ms
123,372 KB
testcase_17 AC 565 ms
123,236 KB
testcase_18 AC 574 ms
123,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

mod=998244353
M=(10**5)*3 
fac=[1]*M
ninv=[1]*M
finv=[1]*M
for i in range(2,M):
  fac[i]=fac[i-1]*i%mod
  ninv[i]=(-(mod//i)*ninv[mod%i])%mod
  finv[i]=finv[i-1]*ninv[i]%mod

def binom(n,k):
  if n<0 or k<0:
    return 0
  if k>n:
    return 0
  return (fac[n]*finv[k]%mod)*finv[n-k]%mod

pow2=[1]
for _ in range(M):
  pow2.append(pow2[-1]*2%mod)


N=2*10**5+10
q=int(input())
M=int(q**0.5)+1
bucket=[[] for i in range(M)]
ans=[0]*q
for i in range(q):
  n,m=map(int,input().split())
  ans[i]=pow2[n]-1
  n-=1
  m-=1
  bucket[m*M//N].append((m,n,i))

for i in range(M):
  if i&1:
    bucket[i].sort(key=lambda x:-x[1])
  else:
    bucket[i].sort(key=lambda x:x[1])

res=1
n=1
m=0
inv2=pow(2,mod-2,mod)

for b in bucket:
  for mi,ni,i in b:
    while n<ni:
      res=2*res-binom(n,m)
      res%=mod
      n+=1
    while n>ni:
      res=inv2*(res+binom(n-1,m))
      res%=mod
      n-=1
    while m<mi:
      res+=binom(n,m+1)
      res%=mod
      m+=1
    while m>mi:
      res-=binom(n,m)
      res%=mod
      m-=1
    ans[i]*=res
    ans[i]%=mod

print(*ans,sep='\n')
0