結果

問題 No.2211 Frequency Table of GCD
ユーザー ShirotsumeShirotsume
提出日時 2022-12-18 16:50:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-07-07 17:51:01
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
56,572 KB
testcase_01 AC 36 ms
56,560 KB
testcase_02 AC 39 ms
56,260 KB
testcase_03 AC 167 ms
86,464 KB
testcase_04 AC 151 ms
93,680 KB
testcase_05 AC 169 ms
102,324 KB
testcase_06 AC 161 ms
89,316 KB
testcase_07 AC 185 ms
101,052 KB
testcase_08 AC 59 ms
76,544 KB
testcase_09 AC 55 ms
71,424 KB
testcase_10 AC 73 ms
92,672 KB
testcase_11 AC 64 ms
83,840 KB
testcase_12 AC 76 ms
96,512 KB
testcase_13 AC 152 ms
91,008 KB
testcase_14 AC 182 ms
88,548 KB
testcase_15 AC 169 ms
86,568 KB
testcase_16 AC 177 ms
87,980 KB
testcase_17 AC 177 ms
100,652 KB
testcase_18 AC 220 ms
109,952 KB
testcase_19 AC 216 ms
109,952 KB
testcase_20 AC 213 ms
110,336 KB
testcase_21 AC 221 ms
110,080 KB
testcase_22 AC 222 ms
110,252 KB
testcase_23 AC 173 ms
87,296 KB
testcase_24 AC 217 ms
108,928 KB
testcase_25 AC 77 ms
99,968 KB
testcase_26 AC 40 ms
55,424 KB
testcase_27 AC 229 ms
110,080 KB
testcase_28 AC 245 ms
108,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import random
n, m = mi()
a = li()
count = [0] * (m + 1)

for v in a:
    count[v] += 1

gcount = [0] * (m + 1)
for i in range(1, m + 1):
    for j in range(i, m + 1, i):
        gcount[i] += count[j]

g = [0] * (m + 1)

for i in range(1, m + 1):
    g[i] = pow(2, gcount[i], mod) - 1
    g[i] %= mod


for i in range(m, 0, -1):
    for j in range(2 * i, m + 1, i):
        g[i] -= g[j]
        g[i] %= mod

for v in g[1:]:
    print(v)
0