結果

問題 No.2211 Frequency Table of GCD
ユーザー shobonvipshobonvip
提出日時 2023-02-10 21:26:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,515 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-07-07 17:51:39
合計ジャッジ時間 17,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,096 KB
testcase_01 AC 33 ms
52,756 KB
testcase_02 AC 30 ms
53,220 KB
testcase_03 AC 130 ms
85,088 KB
testcase_04 AC 447 ms
90,356 KB
testcase_05 AC 721 ms
100,420 KB
testcase_06 AC 420 ms
86,728 KB
testcase_07 AC 706 ms
97,792 KB
testcase_08 AC 90 ms
85,488 KB
testcase_09 AC 76 ms
80,960 KB
testcase_10 AC 126 ms
97,496 KB
testcase_11 AC 103 ms
90,272 KB
testcase_12 AC 132 ms
100,480 KB
testcase_13 AC 391 ms
87,224 KB
testcase_14 AC 396 ms
87,536 KB
testcase_15 AC 288 ms
86,352 KB
testcase_16 AC 397 ms
86,896 KB
testcase_17 AC 649 ms
97,408 KB
testcase_18 AC 1,051 ms
107,904 KB
testcase_19 AC 1,346 ms
108,192 KB
testcase_20 AC 1,074 ms
107,904 KB
testcase_21 AC 1,032 ms
108,040 KB
testcase_22 AC 1,130 ms
107,984 KB
testcase_23 AC 127 ms
85,248 KB
testcase_24 AC 1,515 ms
108,160 KB
testcase_25 AC 97 ms
103,692 KB
testcase_26 AC 34 ms
52,096 KB
testcase_27 AC 1,300 ms
108,416 KB
testcase_28 AC 1,499 ms
108,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def makediv(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]


mod = 998244353
n,m = map(int,input().split())
a = list(map(int,input().split()))
c = [0] * (m + 1)

for i in range(n):
	for j in makediv(a[i]):
		c[j] += 1

dp = [0] * (m + 1)

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

print(*dp[1:],sep="\n")
0