結果

問題 No.2211 Frequency Table of GCD
ユーザー ニックネームニックネーム
提出日時 2023-02-10 21:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,271 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 110,380 KB
最終ジャッジ日時 2024-07-07 18:00:52
合計ジャッジ時間 15,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,032 KB
testcase_01 AC 30 ms
52,896 KB
testcase_02 AC 32 ms
53,444 KB
testcase_03 AC 103 ms
85,304 KB
testcase_04 AC 433 ms
92,016 KB
testcase_05 AC 671 ms
101,692 KB
testcase_06 AC 384 ms
88,052 KB
testcase_07 AC 652 ms
99,436 KB
testcase_08 AC 67 ms
83,656 KB
testcase_09 AC 59 ms
76,700 KB
testcase_10 AC 101 ms
98,028 KB
testcase_11 AC 82 ms
91,008 KB
testcase_12 AC 99 ms
101,388 KB
testcase_13 AC 360 ms
88,932 KB
testcase_14 AC 361 ms
87,652 KB
testcase_15 AC 248 ms
86,800 KB
testcase_16 AC 341 ms
87,420 KB
testcase_17 AC 598 ms
99,044 KB
testcase_18 AC 993 ms
109,720 KB
testcase_19 AC 1,175 ms
109,828 KB
testcase_20 AC 992 ms
109,768 KB
testcase_21 AC 990 ms
109,952 KB
testcase_22 AC 1,008 ms
109,660 KB
testcase_23 AC 90 ms
85,888 KB
testcase_24 AC 1,271 ms
110,380 KB
testcase_25 AC 66 ms
99,716 KB
testcase_26 AC 31 ms
52,788 KB
testcase_27 AC 1,165 ms
109,900 KB
testcase_28 AC 1,246 ms
110,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
mod = 998244353
c = [0]*(m+1); ans = [0]*(m+1)
for v in a:
    for i in range(1,int(v**0.5)+1):
        if not v%i:
            c[i] += 1; c[v//i] += 1
            if v==i*i: c[i] -= 1
for v in range(m,0,-1):
    ans[v] = pow(2,c[v],mod)-1
    for i in range(2*v,m+1,v): ans[v] -= ans[i]
    ans[v] %= mod
print(*ans[1:],sep="\n")
0