結果

問題 No.1529 Constant Lcm
ユーザー titiatitia
提出日時 2021-06-04 21:42:24
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 773 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 379,264 KB
最終ジャッジ日時 2024-04-30 02:13:31
合計ジャッジ時間 60,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,063 ms
365,824 KB
testcase_01 AC 2,239 ms
367,360 KB
testcase_02 AC 2,067 ms
365,952 KB
testcase_03 AC 2,048 ms
366,336 KB
testcase_04 AC 2,387 ms
366,080 KB
testcase_05 AC 2,423 ms
366,720 KB
testcase_06 AC 2,052 ms
366,080 KB
testcase_07 AC 2,088 ms
365,824 KB
testcase_08 AC 2,576 ms
366,080 KB
testcase_09 AC 2,316 ms
366,208 KB
testcase_10 TLE -
testcase_11 AC 2,747 ms
371,328 KB
testcase_12 AC 2,373 ms
367,872 KB
testcase_13 TLE -
testcase_14 AC 2,829 ms
372,992 KB
testcase_15 AC 2,936 ms
374,016 KB
testcase_16 AC 2,857 ms
371,584 KB
testcase_17 AC 2,695 ms
369,792 KB
testcase_18 AC 2,696 ms
369,664 KB
testcase_19 AC 2,877 ms
372,992 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

mod=998244353

X=[i for i in range(10**6+1)]
FACT=[dict() for i in range(10**6+1)]

for i in range(2,10**6+1):
    if X[i]!=1:
        k=X[i]
        for j in range(i,10**6+1,i):
            X[j]//=k
            if k in FACT[j]:
                FACT[j][k]+=1
            else:
                FACT[j][k]=1

LCM=dict()

for j in range(1,N//2+1):
    D1=FACT[j]
    D2=FACT[N-j]

    for s in set(D1.keys())|set(D2.keys()):
        if s in D1:
            x1=D1[s]
        else:
            x1=0

        if s in D2:
            x2=D2[s]
        else:
            x2=0
            
        if s in LCM:
            LCM[s]=max(LCM[s],x1+x2)
        else:
            LCM[s]=x1+x2

#print(LCM)

ANS=1
for s in LCM:
    ANS=ANS*pow(s,LCM[s],mod)%mod

print(ANS)
0