結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 47 ms
58,112 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 45 ms
52,224 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 92 ms
72,320 KB
testcase_11 AC 66 ms
65,152 KB
testcase_12 AC 52 ms
60,288 KB
testcase_13 AC 90 ms
72,448 KB
testcase_14 AC 71 ms
67,328 KB
testcase_15 AC 72 ms
67,584 KB
testcase_16 AC 69 ms
66,048 KB
testcase_17 AC 60 ms
63,360 KB
testcase_18 AC 60 ms
63,616 KB
testcase_19 AC 73 ms
67,584 KB
testcase_20 AC 103 ms
75,776 KB
testcase_21 AC 96 ms
73,856 KB
testcase_22 AC 94 ms
73,600 KB
testcase_23 AC 97 ms
73,472 KB
testcase_24 AC 95 ms
73,728 KB
testcase_25 AC 95 ms
73,600 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