結果

問題 No.2211 Frequency Table of GCD
ユーザー タコイモタコイモ
提出日時 2023-02-10 21:52:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,216 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 108,540 KB
最終ジャッジ日時 2024-07-07 16:05:10
合計ジャッジ時間 31,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,052 KB
testcase_01 AC 39 ms
54,936 KB
testcase_02 AC 39 ms
54,004 KB
testcase_03 AC 843 ms
79,744 KB
testcase_04 AC 906 ms
90,844 KB
testcase_05 AC 1,247 ms
100,620 KB
testcase_06 AC 1,031 ms
86,256 KB
testcase_07 AC 1,436 ms
98,324 KB
testcase_08 AC 85 ms
85,708 KB
testcase_09 AC 77 ms
81,176 KB
testcase_10 AC 122 ms
98,108 KB
testcase_11 AC 100 ms
90,556 KB
testcase_12 AC 130 ms
101,348 KB
testcase_13 AC 817 ms
87,148 KB
testcase_14 AC 1,127 ms
85,308 KB
testcase_15 AC 933 ms
81,856 KB
testcase_16 AC 1,076 ms
84,968 KB
testcase_17 AC 1,183 ms
97,572 KB
testcase_18 AC 1,876 ms
108,332 KB
testcase_19 TLE -
testcase_20 AC 1,886 ms
108,168 KB
testcase_21 AC 1,868 ms
107,984 KB
testcase_22 AC 1,896 ms
108,392 KB
testcase_23 AC 912 ms
79,772 KB
testcase_24 TLE -
testcase_25 AC 92 ms
103,948 KB
testcase_26 AC 38 ms
54,236 KB
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
import sys
#sys.setrecursionlimit(500000)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def TI(): return tuple(map(int,sys.stdin.readline().rstrip().split()))
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip())
#for i, pi in enumerate(p):
from collections import defaultdict,deque
import bisect
import itertools
dic = defaultdict(int)
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]
d = deque()
N,M = MI()
A = LI()
mod = 998244353
#たかいやつから数える
S = [0]*(M) #xで割り切れる個数
for i in A:
  s = make_divisors(i)

  for j in s:
    S[j-1] += 1
ans = [0]*(M)
for i in range(M-1,-1,-1):
  ans[i] = (ans[i]+pow(2,S[i],mod)-1)%mod
  s = make_divisors(i+1)
  for j in s:
    if i+1 == j:
      continue
    ans[j-1] -= ans[i]
for i in ans:
  print(i)
  
0