結果

問題 No.2211 Frequency Table of GCD
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-30 01:05:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,432 ms / 2,000 ms
コード長 999 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 122,124 KB
最終ジャッジ日時 2024-10-30 01:05:34
合計ジャッジ時間 13,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,084 KB
testcase_01 AC 37 ms
53,336 KB
testcase_02 AC 37 ms
53,380 KB
testcase_03 AC 110 ms
79,836 KB
testcase_04 AC 414 ms
101,880 KB
testcase_05 AC 542 ms
116,272 KB
testcase_06 AC 379 ms
96,300 KB
testcase_07 AC 600 ms
113,900 KB
testcase_08 AC 54 ms
76,208 KB
testcase_09 AC 49 ms
70,092 KB
testcase_10 AC 68 ms
92,996 KB
testcase_11 AC 61 ms
83,304 KB
testcase_12 AC 72 ms
97,168 KB
testcase_13 AC 338 ms
97,536 KB
testcase_14 AC 389 ms
93,960 KB
testcase_15 AC 264 ms
86,192 KB
testcase_16 AC 346 ms
92,852 KB
testcase_17 AC 537 ms
112,136 KB
testcase_18 AC 780 ms
115,276 KB
testcase_19 AC 1,032 ms
114,900 KB
testcase_20 AC 797 ms
114,996 KB
testcase_21 AC 806 ms
115,064 KB
testcase_22 AC 774 ms
115,060 KB
testcase_23 AC 75 ms
79,472 KB
testcase_24 AC 117 ms
106,428 KB
testcase_25 AC 86 ms
100,340 KB
testcase_26 AC 36 ms
53,328 KB
testcase_27 AC 1,432 ms
122,124 KB
testcase_28 AC 117 ms
106,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2211

MOD = 998244353

import math

def main():
    N, M = map(int, input().split())
    A = list(map(int, input().split()))

    a_map = {}
    for a in A:
        if a not in a_map:
            a_map[a] = 0
        a_map[a] += 1

    gcd_array = [0] * (M + 1)
    for a, num in a_map.items():

        sqrt_a = int(math.sqrt(a))
        for p in range(1, sqrt_a + 1):
            if a % p == 0:
                q = a // p
                gcd_array[p] += num
                if q != p:
                    gcd_array[q] += num
    
    # 答えを出す
    answer = [0] * (M + 1)
    for m in reversed(range(1, M + 1)):
        if gcd_array[m] == 0:
            continue

        ans = (pow(2, gcd_array[m], MOD) - 1) % MOD
        x = 2 * m
        while x <= M:
            ans -= answer[x]
            ans %= MOD
            x += m
        answer[m] = ans
    
    for i in range(1, M + 1):
        print(answer[i])






if __name__ == "__main__":
    main()
0