結果
問題 | No.1529 Constant Lcm |
ユーザー | titia |
提出日時 | 2021-06-04 21:34:27 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 81,968 KB |
実行使用メモリ | 909,500 KB |
最終ジャッジ日時 | 2024-11-19 12:46:35 |
合計ジャッジ時間 | 90,774 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 2,843 ms
454,164 KB |
testcase_02 | AC | 2,671 ms
444,600 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 2,650 ms
444,548 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 2,668 ms
444,592 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 2,693 ms
444,808 KB |
testcase_09 | MLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 2,887 ms
454,336 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | MLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
ソースコード
N=int(input()) from math import gcd from collections import Counter mod=998244353 X=[i for i in range(10**6+1)] FACT=[Counter() 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 FACT[j][k]+=1 LCM=Counter() for j in range(1,N): D1=FACT[j] D2=FACT[N-j] for s in set(D1.keys())|set(D2.keys()): LCM[s]=max(LCM[s],D1[s]+D2[s]) #print(LCM) ANS=1 for s in LCM: ANS=ANS*pow(s,LCM[s],mod)%mod print(ANS)