結果

問題 No.1529 Constant Lcm
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-10 13:41:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,928 ms / 3,000 ms
コード長 786 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 98,056 KB
最終ジャッジ日時 2024-11-14 10:51:27
合計ジャッジ時間 21,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,676 KB
testcase_01 AC 105 ms
84,876 KB
testcase_02 AC 69 ms
68,924 KB
testcase_03 AC 68 ms
70,632 KB
testcase_04 AC 75 ms
69,536 KB
testcase_05 AC 68 ms
69,772 KB
testcase_06 AC 68 ms
69,720 KB
testcase_07 AC 69 ms
69,196 KB
testcase_08 AC 72 ms
70,004 KB
testcase_09 AC 71 ms
70,484 KB
testcase_10 AC 1,645 ms
97,864 KB
testcase_11 AC 700 ms
89,052 KB
testcase_12 AC 143 ms
85,052 KB
testcase_13 AC 1,474 ms
95,060 KB
testcase_14 AC 908 ms
91,016 KB
testcase_15 AC 1,058 ms
92,272 KB
testcase_16 AC 812 ms
89,332 KB
testcase_17 AC 455 ms
87,688 KB
testcase_18 AC 472 ms
87,664 KB
testcase_19 AC 951 ms
91,108 KB
testcase_20 AC 1,913 ms
97,416 KB
testcase_21 AC 1,928 ms
97,948 KB
testcase_22 AC 1,856 ms
97,988 KB
testcase_23 AC 1,838 ms
98,056 KB
testcase_24 AC 1,819 ms
97,760 KB
testcase_25 AC 1,842 ms
97,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = 10**6+1
spf = [-1]*(N+1)
for i in range(N+1):
    spf[i] = i
for i in range(2, int(math.sqrt(N))+1):
    if spf[i] == i:
        for j in range(i*2, N+1, i):
            if spf[j] == j:
                spf[j] = i

from collections import defaultdict
def factorize(n):
    d = defaultdict(lambda: 0)
    if n == 1:
        d[1] = 1
        return d
    while n != 1:
        p = spf[n]
        d[p] += 1
        n //= p
    return d

n = int(input())

mod = 998244353
P = defaultdict(lambda: 0)
for i in range(1, n):
    d0 = factorize(i)
    d1 = factorize(n-i)
    for k, v in d0.items():
        P[k] = max(P[k], v+d1[k])
    for k, v in d1.items():
        P[k] = max(P[k], v+d0[k])
ans = 1
for k, v in P.items():
    ans *= pow(k, v, mod)
    ans %= mod
print(ans)
0