結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
70,128 KB
testcase_01 AC 110 ms
85,736 KB
testcase_02 AC 67 ms
69,636 KB
testcase_03 AC 70 ms
69,188 KB
testcase_04 AC 74 ms
69,312 KB
testcase_05 AC 68 ms
69,444 KB
testcase_06 AC 74 ms
69,688 KB
testcase_07 AC 71 ms
70,144 KB
testcase_08 AC 70 ms
68,860 KB
testcase_09 AC 69 ms
69,828 KB
testcase_10 MLE -
testcase_11 AC 996 ms
296,104 KB
testcase_12 AC 143 ms
95,568 KB
testcase_13 MLE -
testcase_14 AC 1,354 ms
378,648 KB
testcase_15 AC 1,424 ms
396,044 KB
testcase_16 AC 1,030 ms
325,832 KB
testcase_17 AC 543 ms
215,692 KB
testcase_18 AC 568 ms
226,356 KB
testcase_19 AC 1,443 ms
386,812 KB
testcase_20 TLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 TLE -
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