結果

問題 No.1529 Constant Lcm
ユーザー AEnAEn
提出日時 2022-09-02 01:26:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 92,384 KB
最終ジャッジ日時 2024-11-14 17:53:45
合計ジャッジ時間 8,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,532 KB
testcase_01 AC 59 ms
68,788 KB
testcase_02 AC 41 ms
55,564 KB
testcase_03 AC 40 ms
54,540 KB
testcase_04 AC 42 ms
54,000 KB
testcase_05 AC 42 ms
54,380 KB
testcase_06 AC 41 ms
54,088 KB
testcase_07 AC 42 ms
54,072 KB
testcase_08 AC 42 ms
54,148 KB
testcase_09 AC 42 ms
54,524 KB
testcase_10 AC 535 ms
90,824 KB
testcase_11 AC 240 ms
82,260 KB
testcase_12 AC 77 ms
76,732 KB
testcase_13 AC 472 ms
88,924 KB
testcase_14 AC 320 ms
84,756 KB
testcase_15 AC 330 ms
84,908 KB
testcase_16 AC 261 ms
83,328 KB
testcase_17 AC 171 ms
79,996 KB
testcase_18 AC 176 ms
80,292 KB
testcase_19 AC 312 ms
84,472 KB
testcase_20 AC 584 ms
92,208 KB
testcase_21 AC 591 ms
92,304 KB
testcase_22 AC 563 ms
92,144 KB
testcase_23 AC 579 ms
92,204 KB
testcase_24 AC 582 ms
92,384 KB
testcase_25 AC 593 ms
92,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
mod = 998244353
def smallest_prime_factors(n):
    """各数の最小素因数を求める"""
    spf = [0]*(n+1)
    for i in range(n+1):
        spf[i] = i
    for i in range(2,n+1):
        if i*i>n:
            break
        if spf[i] == i:
            for j in range(i*i, n+1, i):
                if spf[j] == j:
                    spf[j] = i
    return spf

def fac(x, spf, ret) -> list:
    while x!=1:
        if spf[x] in ret:
            ret[spf[x]] += 1
        else:
            ret[spf[x]] = 1
        x //= spf[x]
    return ret

res = [0]*N
spf = smallest_prime_factors(N-1)
for i in range(N//2):
    ret = {}
    a, b = i+1, N-i-1
    ret = fac(a, spf, ret)
    ret = fac(b, spf, ret)
    for key in ret.keys():
        res[key] = max(ret[key], res[key])
ans = 1
for i in range(N):
    if res[i] != 0:
        ans *= pow(i, res[i], mod)
        ans %= mod
print(ans)
0