結果

問題 No.2211 Frequency Table of GCD
ユーザー prussian_coderprussian_coder
提出日時 2023-02-13 21:42:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 99,436 KB
最終ジャッジ日時 2024-07-16 13:14:09
合計ジャッジ時間 5,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,804 KB
testcase_01 AC 39 ms
52,388 KB
testcase_02 AC 35 ms
52,532 KB
testcase_03 AC 114 ms
82,208 KB
testcase_04 AC 119 ms
88,464 KB
testcase_05 AC 134 ms
93,804 KB
testcase_06 AC 123 ms
86,816 KB
testcase_07 AC 144 ms
92,836 KB
testcase_08 AC 50 ms
68,952 KB
testcase_09 AC 47 ms
65,760 KB
testcase_10 AC 60 ms
79,544 KB
testcase_11 AC 53 ms
73,532 KB
testcase_12 AC 63 ms
82,296 KB
testcase_13 AC 117 ms
86,748 KB
testcase_14 AC 127 ms
86,764 KB
testcase_15 AC 119 ms
84,404 KB
testcase_16 AC 122 ms
86,400 KB
testcase_17 AC 128 ms
91,884 KB
testcase_18 AC 165 ms
98,872 KB
testcase_19 AC 161 ms
99,436 KB
testcase_20 AC 157 ms
99,100 KB
testcase_21 AC 161 ms
98,968 KB
testcase_22 AC 160 ms
98,852 KB
testcase_23 AC 120 ms
82,624 KB
testcase_24 AC 151 ms
99,276 KB
testcase_25 AC 64 ms
84,192 KB
testcase_26 AC 36 ms
52,700 KB
testcase_27 AC 154 ms
99,000 KB
testcase_28 AC 145 ms
99,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[int(x) for x in input().split()]
B=[0]*M
mod=998244353
for i in range(N):
	B[A[i]-1]+=1
C=[0]*M
for i in range(M):
	x=i+1
	t=1
	while x*t<=M:
		C[i]+=B[x*t-1]
		t+=1
ans=[0]*M
for i in reversed(range(M)):
	a=pow(2,C[i],mod)-1
	x=i+1
	t=2
	while t*x<=M:
		a-=ans[t*x-1]
		a%=mod
		t+=1
	ans[i]=a
[print(a) for a in ans]
0