結果
| 問題 | 
                            No.1529 Constant Lcm
                             | 
                    
| コンテスト | |
| ユーザー | 
                             hir355
                         | 
                    
| 提出日時 | 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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 24 | 
ソースコード
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)
            
            
            
        
            
hir355