結果

問題 No.1529 Constant Lcm
ユーザー hir355hir355
提出日時 2021-06-04 20:55:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 3,000 ms
コード長 654 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-11-19 10:40:19
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,480 KB
testcase_01 AC 47 ms
58,240 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 42 ms
52,736 KB
testcase_08 AC 41 ms
52,736 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 102 ms
72,704 KB
testcase_11 AC 63 ms
65,408 KB
testcase_12 AC 48 ms
60,800 KB
testcase_13 AC 83 ms
72,576 KB
testcase_14 AC 71 ms
67,712 KB
testcase_15 AC 73 ms
67,456 KB
testcase_16 AC 67 ms
65,920 KB
testcase_17 AC 60 ms
63,744 KB
testcase_18 AC 63 ms
64,000 KB
testcase_19 AC 72 ms
67,968 KB
testcase_20 AC 98 ms
75,776 KB
testcase_21 AC 106 ms
73,856 KB
testcase_22 AC 102 ms
73,856 KB
testcase_23 AC 101 ms
74,112 KB
testcase_24 AC 96 ms
74,004 KB
testcase_25 AC 106 ms
73,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n**0.5) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * 2, n + 1, i):
            is_prime[j] = False
    return [i for i in range(n + 1) if is_prime[i]]

from math import gcd
MOD = 998244353
n = int(input())
ans = 1
pr = primes(n)
for p in pr:
    t = 1
    x = p
    while x < n:
        y = x
        if t < x:
            t = x
        while y < n:
            if (n % y) % x == 0 and t < x * y:
                t = x * y
            y *= p
        x *= p
    ans *= t
    ans %= MOD
print(ans)
0