結果

問題 No.1529 Constant Lcm
ユーザー Eki1009Eki1009
提出日時 2021-06-04 20:17:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 3,000 ms
コード長 678 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-11-19 08:31:21
合計ジャッジ時間 7,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 79 ms
73,856 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 40 ms
53,888 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 41 ms
53,376 KB
testcase_09 AC 42 ms
53,504 KB
testcase_10 AC 471 ms
90,964 KB
testcase_11 AC 237 ms
82,512 KB
testcase_12 AC 97 ms
77,296 KB
testcase_13 AC 434 ms
89,088 KB
testcase_14 AC 291 ms
84,936 KB
testcase_15 AC 309 ms
84,868 KB
testcase_16 AC 254 ms
83,232 KB
testcase_17 AC 174 ms
80,036 KB
testcase_18 AC 192 ms
80,660 KB
testcase_19 AC 309 ms
85,248 KB
testcase_20 AC 515 ms
92,400 KB
testcase_21 AC 530 ms
92,288 KB
testcase_22 AC 541 ms
92,440 KB
testcase_23 AC 517 ms
92,468 KB
testcase_24 AC 526 ms
92,092 KB
testcase_25 AC 534 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
mod = 998244353
n = int(input())
P = [0]*(n+1)
P[0] = P[1] = 1
for i in range(2, n+1):
    if P[i]:
        continue
    for j in range(i, n+1, i):
        P[j] = i
C = [0]*(n+1)
for i in range(1, n//2+1):
    j = n-i
    D = defaultdict(int)
    while i > 1:
        d = 0
        p = P[i]
        while i%p == 0:
            i //= p
            d += 1
        D[p] += d
    while j > 1:
        d = 0
        p = P[j]
        while j%p == 0:
            j //= p
            d += 1
        D[p] += d
    for k, v in D.items():
        C[k] = max(C[k], v)
ans = 1
for i in range(1, n+1):
    ans *= pow(i, C[i], mod)
    ans %= mod
print(ans)
0