結果

問題 No.1529 Constant Lcm
ユーザー Eki1009Eki1009
提出日時 2021-06-04 20:17:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 612 ms / 3,000 ms
コード長 678 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-04-29 23:31:04
合計ジャッジ時間 8,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 90 ms
73,344 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 47 ms
53,504 KB
testcase_04 AC 45 ms
53,376 KB
testcase_05 AC 45 ms
53,760 KB
testcase_06 AC 51 ms
53,504 KB
testcase_07 AC 44 ms
53,376 KB
testcase_08 AC 47 ms
53,632 KB
testcase_09 AC 45 ms
53,504 KB
testcase_10 AC 546 ms
90,880 KB
testcase_11 AC 270 ms
82,560 KB
testcase_12 AC 110 ms
77,312 KB
testcase_13 AC 495 ms
88,832 KB
testcase_14 AC 335 ms
84,864 KB
testcase_15 AC 346 ms
84,992 KB
testcase_16 AC 286 ms
83,328 KB
testcase_17 AC 197 ms
80,256 KB
testcase_18 AC 214 ms
80,640 KB
testcase_19 AC 349 ms
85,120 KB
testcase_20 AC 583 ms
92,160 KB
testcase_21 AC 608 ms
92,800 KB
testcase_22 AC 612 ms
92,672 KB
testcase_23 AC 604 ms
92,672 KB
testcase_24 AC 598 ms
92,160 KB
testcase_25 AC 612 ms
92,416 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