結果

問題 No.1529 Constant Lcm
ユーザー 👑 KazunKazun
提出日時 2021-04-29 00:48:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,575 ms / 3,000 ms
コード長 1,304 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 97,736 KB
最終ジャッジ日時 2024-04-18 17:00:19
合計ジャッジ時間 17,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,988 KB
testcase_01 AC 83 ms
76,840 KB
testcase_02 AC 41 ms
53,676 KB
testcase_03 AC 42 ms
54,736 KB
testcase_04 AC 41 ms
54,372 KB
testcase_05 AC 41 ms
55,160 KB
testcase_06 AC 41 ms
53,596 KB
testcase_07 AC 41 ms
54,800 KB
testcase_08 AC 41 ms
53,728 KB
testcase_09 AC 40 ms
54,548 KB
testcase_10 AC 1,430 ms
96,560 KB
testcase_11 AC 543 ms
83,960 KB
testcase_12 AC 104 ms
77,428 KB
testcase_13 AC 1,120 ms
93,244 KB
testcase_14 AC 711 ms
86,924 KB
testcase_15 AC 811 ms
88,268 KB
testcase_16 AC 608 ms
84,736 KB
testcase_17 AC 349 ms
81,688 KB
testcase_18 AC 373 ms
81,108 KB
testcase_19 AC 721 ms
87,228 KB
testcase_20 AC 1,575 ms
97,124 KB
testcase_21 AC 1,558 ms
97,112 KB
testcase_22 AC 1,521 ms
97,716 KB
testcase_23 AC 1,455 ms
97,736 KB
testcase_24 AC 1,430 ms
97,168 KB
testcase_25 AC 1,403 ms
97,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Smallest_Prime_Factor(N):
    """0,1,2,...,Nの最小の素因数のリスト(0,1については1にしている)
    """

    if N==0:
        return [1]

    N=abs(N)
    L=list(range(N+1))
    L[0]=L[1]=1

    x=4
    while x<=N:
        L[x]=2
        x+=2

    x=9
    while x<=N:
        if L[x]==x:
            L[x]=3
        x+=6

    x=5
    Flag=True
    while x*x<=N:
        if L[x]==x:
            y=x*x
            while y<=N:
                if L[y]==y:
                    L[y]=x
                y+=x<<1
        x+=2 if Flag else 4

    return L

def Faster_Prime_Factorization(N,L):
    """

    L:Smallest_Prime_Factors(N)で求めたリスト
    """
    N=abs(N)

    D=[]
    while N>1:
        a=L[N]
        k=0
        while L[N]==a:
            k+=1
            N//=a
        D.append([a,k])
    return D
#================================================
from collections import defaultdict
N=int(input())
Mod=998244353
D=defaultdict(int)

P=Smallest_Prime_Factor(N)

D=defaultdict(int)

for i in range(1,N):
    A=defaultdict(int)
    for p,e in Faster_Prime_Factorization(i,P):
        A[p]+=e

    for p,e in Faster_Prime_Factorization(N-i,P):
        A[p]+=e

    for p in A:
        D[p]=max(D[p],A[p])

X=1
for p,e in D.items():
    X*=pow(p,e,Mod)
    X%=Mod

print(X)
0