結果

問題 No.1529 Constant Lcm
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-07 22:14:24
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,078 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 667,648 KB
最終ジャッジ日時 2024-05-03 22:59:23
合計ジャッジ時間 31,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
68,736 KB
testcase_01 AC 113 ms
85,888 KB
testcase_02 AC 74 ms
68,864 KB
testcase_03 AC 74 ms
68,864 KB
testcase_04 AC 76 ms
68,480 KB
testcase_05 AC 84 ms
69,120 KB
testcase_06 AC 77 ms
68,608 KB
testcase_07 AC 75 ms
68,608 KB
testcase_08 AC 75 ms
68,736 KB
testcase_09 AC 75 ms
68,736 KB
testcase_10 MLE -
testcase_11 AC 919 ms
296,000 KB
testcase_12 AC 142 ms
95,772 KB
testcase_13 MLE -
testcase_14 AC 1,276 ms
378,888 KB
testcase_15 AC 1,358 ms
396,288 KB
testcase_16 AC 989 ms
325,808 KB
testcase_17 AC 557 ms
215,936 KB
testcase_18 AC 566 ms
226,432 KB
testcase_19 AC 1,423 ms
386,816 KB
testcase_20 MLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def main():

    N = 10**6+1
    spf = [-1]*(N+1)
    for i in range(N+1):
        spf[i] = i
    for i in range(2, int(math.sqrt(N))+1):
        if spf[i] == i:
            for j in range(i*2, N+1, i):
                if spf[j] == j:
                    spf[j] = i

    def factorize(n):
        d = {}
        while n != 1:
            p = spf[n]
            if p in d:
                d[p] += 1
            else:
                d[p] = 1
            n //= p
        return d

    n = int(input())

    mod = 998244353
    from collections import defaultdict
    D = [defaultdict(lambda: 0) for i in range(n)]
    for i in range(1, n):
        if i == 1:
            continue
        d = factorize(i)
        for k, v in d.items():
            D[i][k] += v
            D[n-i][k] += v
    P = defaultdict(lambda: 0)
    for i in range(1, n):
        d = D[i]
        for k, v in d.items():
            P[k] = max(P[k], v)
    ans = 1
    for k, v in P.items():
        ans *= pow(k, v, mod)
        ans %= mod
    print(ans)

if __name__ == '__main__':
    main()
0