結果

問題 No.2576 LCM Pattern
ユーザー hato336hato336
提出日時 2023-12-04 12:18:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 479 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-09-26 22:55:26
合計ジャッジ時間 3,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,760 KB
testcase_01 AC 53 ms
53,632 KB
testcase_02 AC 52 ms
53,632 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 60 ms
58,752 KB
testcase_06 AC 57 ms
58,752 KB
testcase_07 AC 54 ms
58,880 KB
testcase_08 AC 53 ms
58,880 KB
testcase_09 AC 57 ms
58,368 KB
testcase_10 AC 54 ms
58,624 KB
testcase_11 AC 53 ms
58,496 KB
testcase_12 AC 53 ms
58,752 KB
testcase_13 AC 52 ms
58,880 KB
testcase_14 AC 53 ms
59,008 KB
testcase_15 AC 52 ms
58,496 KB
testcase_16 AC 48 ms
53,248 KB
testcase_17 AC 54 ms
59,136 KB
testcase_18 AC 53 ms
58,752 KB
testcase_19 AC 52 ms
59,136 KB
testcase_20 AC 53 ms
59,008 KB
testcase_21 AC 52 ms
53,632 KB
testcase_22 AC 52 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
def factorization(n):
    relist = []
    if n == 1:
        relist = 1
    for i in range(2, int(n ** 0.5) + 1): #割る数
        while n % i == 0:
            relist.append(i)
            n /= i
    if n != 1:
        relist.append(int(n))
    return relist    
x = factorization(m)
import collections
y = collections.Counter(x)
mod = 998244353
ans = 1
for i in y:
    z = y[i]
    ans *= pow(z+1,n,mod) - pow(z,n,mod)
    ans %= mod
print(ans)
0