結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-09-14 05:15:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,507 ms / 4,000 ms
コード長 1,838 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 163,140 KB
最終ジャッジ日時 2024-09-14 05:16:01
合計ジャッジ時間 49,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,264 KB
testcase_01 AC 38 ms
53,544 KB
testcase_02 AC 183 ms
140,960 KB
testcase_03 AC 131 ms
79,004 KB
testcase_04 AC 136 ms
78,900 KB
testcase_05 AC 123 ms
78,152 KB
testcase_06 AC 131 ms
79,156 KB
testcase_07 AC 108 ms
78,796 KB
testcase_08 AC 108 ms
78,584 KB
testcase_09 AC 1,257 ms
126,896 KB
testcase_10 AC 1,383 ms
123,584 KB
testcase_11 AC 359 ms
158,200 KB
testcase_12 AC 350 ms
159,216 KB
testcase_13 AC 457 ms
123,200 KB
testcase_14 AC 536 ms
157,364 KB
testcase_15 AC 1,869 ms
162,360 KB
testcase_16 AC 1,678 ms
162,804 KB
testcase_17 AC 2,409 ms
161,532 KB
testcase_18 AC 2,395 ms
161,700 KB
testcase_19 AC 545 ms
162,708 KB
testcase_20 AC 545 ms
162,768 KB
testcase_21 AC 2,101 ms
162,468 KB
testcase_22 AC 2,059 ms
162,840 KB
testcase_23 AC 2,358 ms
162,820 KB
testcase_24 AC 1,648 ms
162,696 KB
testcase_25 AC 1,717 ms
162,852 KB
testcase_26 AC 1,835 ms
162,808 KB
testcase_27 AC 2,507 ms
162,296 KB
testcase_28 AC 2,327 ms
163,140 KB
testcase_29 AC 2,470 ms
162,640 KB
testcase_30 AC 2,488 ms
162,512 KB
testcase_31 AC 2,468 ms
162,468 KB
testcase_32 AC 2,505 ms
162,624 KB
testcase_33 AC 391 ms
161,708 KB
testcase_34 AC 381 ms
161,568 KB
testcase_35 AC 404 ms
161,828 KB
testcase_36 AC 721 ms
162,868 KB
testcase_37 AC 701 ms
163,056 KB
testcase_38 AC 688 ms
162,588 KB
testcase_39 AC 571 ms
161,924 KB
testcase_40 AC 588 ms
162,136 KB
testcase_41 AC 576 ms
162,080 KB
testcase_42 AC 574 ms
162,196 KB
testcase_43 AC 578 ms
162,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

class fenwick_tree:
    def __init__(self, n, init=None):
        self.n = n
        self.tree = [0] * (n + 1)
        if init:
            for i in range(n):
                self.add(i, init[i])

    def add(self, k, x):
        while k < self.n:
            self.tree[k] = (self.tree[k] + x) % mod
            k |= k + 1

    def prefix_sum(self, i):
        s = 0
        i -= 1
        while i >= 0:
            s += self.tree[i]
            i = (i & (i + 1)) - 1
        return s % mod


def floor_sum(n, m, a, b):
    # sum [i = 0, ..., n-1] floor((ai+b)/m)
    ans = 0
    while True:
        ans += (n - 1) * n * (a // m) // 2
        a %= m
        ans += n * (b // m)
        b %= m
        y = (a * n + b) // m
        x = y * m - b
        if y == 0:
            return ans
        ans += (n - (x + a - 1) // a) * y
        n, m, a, b = y, a, m, (-x) % a

n,m=map(int,input().split())

inv=[0]+[pow(i,mod-2,mod)for i in range(1,m+1)]
d=list(map(int,input().split()))

B=100

cnt=[]
cnt1=[[0]*(m+1)for i in range(B+1)]
cnt2=[[0]*(m+1)for i in range(B+1)]

for i in range(2):
    cnt=[0]*(B+1)
    for e in d:
        if e>B or i==0:
            for j in range(1,B+1):
                cnt1[j][e]+=cnt[j]
                cnt1[j][e]%=mod
        if e<=B:
            cnt[e]+=1
    d.reverse()
    cnt1,cnt2=cnt2,cnt1

ans=0
ft=fenwick_tree(m+1)

for e in d:
    if e<=B:continue
    for i in range(e,m+1,e):
        ans+=(ft.prefix_sum(m+1)-ft.prefix_sum(i+1))*inv[m//e]
        ft.add(i,inv[m//e])

for i in range(1,B+1):
    for j in range(1,m+1):
        if cnt1[i][j]:
            ans+=inv[m//i]*inv[m//j]%mod*cnt1[i][j]%mod*floor_sum(m//i,j,i,i-1)%mod
        if cnt2[i][j]:
            ans+=inv[m//i]*inv[m//j]%mod*cnt2[i][j]%mod*floor_sum(m//j,i,j,j-1)%mod

for e in d:
    ans*=m//e
    ans%=mod

print(ans)
0