結果

問題 No.1529 Constant Lcm
ユーザー roarisroaris
提出日時 2021-06-04 21:21:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,278 ms / 3,000 ms
コード長 844 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 98,916 KB
最終ジャッジ日時 2024-11-19 12:06:08
合計ジャッジ時間 25,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 115 ms
77,412 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 41 ms
54,400 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 46 ms
54,272 KB
testcase_06 AC 42 ms
54,272 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 41 ms
53,804 KB
testcase_10 AC 2,035 ms
97,708 KB
testcase_11 AC 818 ms
85,632 KB
testcase_12 AC 148 ms
77,956 KB
testcase_13 AC 1,761 ms
94,208 KB
testcase_14 AC 1,127 ms
88,000 KB
testcase_15 AC 1,152 ms
89,064 KB
testcase_16 AC 948 ms
85,404 KB
testcase_17 AC 535 ms
83,084 KB
testcase_18 AC 588 ms
82,176 KB
testcase_19 AC 1,121 ms
88,048 KB
testcase_20 AC 2,213 ms
98,536 KB
testcase_21 AC 2,253 ms
98,880 KB
testcase_22 AC 2,237 ms
98,916 KB
testcase_23 AC 2,278 ms
98,388 KB
testcase_24 AC 2,268 ms
98,312 KB
testcase_25 AC 2,176 ms
98,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

class Fast_factorize:
    def __init__(self, n):
        self.p = [-1]*(n+1)
        
        for i in range(2, n+1):
            if self.p[i]==-1:
                for j in range(i, n+1, i):
                    if self.p[j]==-1:
                        self.p[j] = i
    
    def factorize(self, n):
        res = []
        
        while n>1:
            res.append(self.p[n])
            n //= self.p[n]
        
        return res

N = int(input())
ff = Fast_factorize(N)
cnt = defaultdict(int)

for i in range(1, N):
    cnt1 = Counter(ff.factorize(i))
    cnt2 = Counter(ff.factorize(N-i))
    ks = set(list(cnt1.keys())+list(cnt2.keys()))
    
    for k in ks:
        cnt[k] = max(cnt[k], cnt1[k]+cnt2[k])

ans = 1
MOD = 998244353

for k, v in cnt.items():
    ans *= pow(k, v, MOD)
    ans %= MOD

print(ans)
0