結果

問題 No.1529 Constant Lcm
ユーザー H20H20
提出日時 2021-06-04 21:38:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,190 ms / 3,000 ms
コード長 698 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 259,016 KB
最終ジャッジ日時 2024-11-19 13:12:12
合計ジャッジ時間 23,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,952 KB
testcase_01 AC 68 ms
73,080 KB
testcase_02 AC 39 ms
54,760 KB
testcase_03 AC 40 ms
54,712 KB
testcase_04 AC 43 ms
54,472 KB
testcase_05 AC 38 ms
55,080 KB
testcase_06 AC 38 ms
55,120 KB
testcase_07 AC 40 ms
54,700 KB
testcase_08 AC 39 ms
55,000 KB
testcase_09 AC 37 ms
55,532 KB
testcase_10 AC 1,993 ms
241,192 KB
testcase_11 AC 658 ms
134,436 KB
testcase_12 AC 93 ms
78,932 KB
testcase_13 AC 1,593 ms
217,380 KB
testcase_14 AC 954 ms
161,668 KB
testcase_15 AC 1,046 ms
165,492 KB
testcase_16 AC 761 ms
143,356 KB
testcase_17 AC 397 ms
111,104 KB
testcase_18 AC 435 ms
113,320 KB
testcase_19 AC 1,010 ms
163,624 KB
testcase_20 AC 2,174 ms
257,572 KB
testcase_21 AC 2,190 ms
257,572 KB
testcase_22 AC 2,126 ms
257,704 KB
testcase_23 AC 2,177 ms
258,596 KB
testcase_24 AC 2,120 ms
259,016 KB
testcase_25 AC 2,136 ms
257,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import collections
#素因数分解
def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

N=int(input())
L = []
L.append([])
for i in range(1,N):
    L.append(prime_factorize(i))

d = collections.defaultdict(int)

for i in range(1,N//2+1):
    TEMP = L[i]+L[N-i]
    dd = collections.defaultdict(int)
    for temp in TEMP:
        dd[temp]+=1
    for k,v in dd.items():
        d[k]=max(d[k],v)

ans = 1
for k,v in d.items():
    ans = ans*k**v%998244353
print(ans)
0