結果

問題 No.1529 Constant Lcm
ユーザー lemondolemondo
提出日時 2021-06-04 20:29:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 843 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 428,000 KB
最終ジャッジ日時 2024-04-29 23:53:28
合計ジャッジ時間 5,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,136 KB
testcase_01 AC 133 ms
78,208 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 AC 47 ms
53,632 KB
testcase_09 AC 44 ms
53,376 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return list(map(int, input().split()))
sys.setrecursionlimit(10**9)

N = int(input())
mod = 998244353

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

from collections import Counter, defaultdict
count = []
for i in range(1, N):
    count.append(Counter(prime_factorize(i)))
primes = defaultdict(int)
for i in range(N-1):
    c_merged = count[i] + count[-i-1]
    for key in c_merged.keys():
        primes[key] = max(c_merged[key], primes[key])
ans = 1
for key in primes.keys():
    ans *= pow(key, primes[key], mod)
    ans %= mod
print(ans)
0