結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-09-14 05:14:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,836 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 83,900 KB
最終ジャッジ日時 2024-09-14 05:15:06
合計ジャッジ時間 11,980 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,944 KB
testcase_01 AC 37 ms
53,876 KB
testcase_02 AC 139 ms
82,828 KB
testcase_03 AC 101 ms
77,544 KB
testcase_04 AC 90 ms
76,728 KB
testcase_05 AC 114 ms
77,488 KB
testcase_06 AC 109 ms
76,636 KB
testcase_07 AC 68 ms
73,044 KB
testcase_08 AC 69 ms
73,540 KB
testcase_09 AC 294 ms
83,644 KB
testcase_10 AC 299 ms
83,900 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

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=5

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