結果

問題 No.2211 Frequency Table of GCD
ユーザー ygd.ygd.
提出日時 2023-02-10 22:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,463 ms / 2,000 ms
コード長 1,715 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 129,904 KB
最終ジャッジ日時 2024-07-07 18:08:33
合計ジャッジ時間 13,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
83,072 KB
testcase_01 AC 71 ms
83,072 KB
testcase_02 AC 58 ms
82,688 KB
testcase_03 AC 151 ms
109,484 KB
testcase_04 AC 487 ms
120,704 KB
testcase_05 AC 642 ms
124,712 KB
testcase_06 AC 452 ms
115,328 KB
testcase_07 AC 651 ms
128,512 KB
testcase_08 AC 70 ms
99,840 KB
testcase_09 AC 67 ms
94,464 KB
testcase_10 AC 83 ms
115,832 KB
testcase_11 AC 77 ms
106,624 KB
testcase_12 AC 93 ms
120,824 KB
testcase_13 AC 394 ms
116,608 KB
testcase_14 AC 438 ms
113,004 KB
testcase_15 AC 316 ms
107,568 KB
testcase_16 AC 416 ms
111,988 KB
testcase_17 AC 624 ms
127,292 KB
testcase_18 AC 888 ms
125,308 KB
testcase_19 AC 1,074 ms
125,112 KB
testcase_20 AC 895 ms
125,184 KB
testcase_21 AC 891 ms
125,124 KB
testcase_22 AC 902 ms
125,312 KB
testcase_23 AC 122 ms
129,904 KB
testcase_24 AC 155 ms
125,056 KB
testcase_25 AC 96 ms
124,032 KB
testcase_26 AC 58 ms
82,944 KB
testcase_27 AC 1,463 ms
128,924 KB
testcase_28 AC 151 ms
125,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
import math
import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict
from collections import deque
import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
dx = [1,0,-1,0]
dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

def main():
    N,M = map(int,input().split()); MAX = 3*pow(10,5)
    pow2 = [1]
    for i in range(MAX):
        pow2.append(pow2[-1]*2%MOD)
    A = list(map(int,input().split()))
    Adic = defaultdict(int)
    for a in A:
        Adic[a] += 1
    dic = defaultdict(int)
    for a,n in Adic.items():
        X = make_divisors(a)
        for x in X:
            dic[x] += n
    # print(dic)
    ans = [0]*(M+1)
    for i in reversed(range(1,M+1)):
        temp = pow2[dic[i]] - 1
        # print(i,temp)
        if temp == 0:
            ans[i] = temp
        else:
            for fac in range(2,MAX):
                if i*fac > M: break
                # print("XX",i*fac,ans[i*fac])
                temp -= ans[i*fac]
                temp %= MOD
            ans[i] = temp
    for i in range(1,M+1):
        print(ans[i]%MOD)
                


if __name__ == '__main__':
    main()
0