結果

問題 No.1529 Constant Lcm
ユーザー 👑 rin204rin204
提出日時 2022-01-27 00:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 3,000 ms
コード長 555 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-06-06 08:15:20
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 48 ms
61,312 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 176 ms
90,240 KB
testcase_11 AC 101 ms
73,728 KB
testcase_12 AC 56 ms
65,536 KB
testcase_13 AC 155 ms
86,656 KB
testcase_14 AC 118 ms
77,568 KB
testcase_15 AC 128 ms
80,768 KB
testcase_16 AC 106 ms
74,624 KB
testcase_17 AC 81 ms
68,608 KB
testcase_18 AC 83 ms
68,992 KB
testcase_19 AC 120 ms
77,440 KB
testcase_20 AC 189 ms
89,344 KB
testcase_21 AC 189 ms
89,600 KB
testcase_22 AC 196 ms
89,984 KB
testcase_23 AC 190 ms
89,088 KB
testcase_24 AC 193 ms
89,856 KB
testcase_25 AC 185 ms
91,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())

isprime = [True] * n
div = {}
for i in range(2, n):
    if not isprime[i]:
        continue
    max_ = 1
    for j in range(i * i, n, i):
        isprime[j] = False
        cnt = 0
        while j % i == 0:
            j //= i
            cnt += 1
        max_ = max(max_, cnt)
    if n % i == 0:
        m = n - i ** max_
        while m % i == 0:
            max_ += 1
            m //= i
    div[i] = max_

ans = 1
for k, v in div.items():
    for _ in range(v):
        ans *= k
        ans %= MOD
print(ans % MOD)

0