結果

問題 No.1529 Constant Lcm
ユーザー convexineqconvexineq
提出日時 2021-06-04 22:27:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 84,864 KB
最終ジャッジ日時 2024-11-19 21:49:17
合計ジャッジ時間 22,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 50 ms
60,672 KB
testcase_02 WA -
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 39 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 1,955 ms
82,176 KB
testcase_11 AC 582 ms
70,528 KB
testcase_12 AC 61 ms
63,616 KB
testcase_13 AC 1,608 ms
79,468 KB
testcase_14 AC 901 ms
73,344 KB
testcase_15 AC 951 ms
73,856 KB
testcase_16 AC 699 ms
71,424 KB
testcase_17 AC 333 ms
67,328 KB
testcase_18 AC 363 ms
67,968 KB
testcase_19 AC 930 ms
74,368 KB
testcase_20 AC 2,217 ms
83,584 KB
testcase_21 AC 2,211 ms
84,096 KB
testcase_22 AC 2,211 ms
83,456 KB
testcase_23 AC 1,879 ms
84,864 KB
testcase_24 AC 1,873 ms
84,736 KB
testcase_25 AC 2,217 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

n = int(input())
primes = Eratosthenes(n-1)
MOD = 998244353
r = 1
while primes and primes[-1]**2 >= n:
    p = primes.pop()
    if n%p:
        r = r*p%MOD
    else:
        r = r*p*p%MOD
for p in primes:
    v = 0
    for i in range(1,(n+1)//2):
        k = i*(n-i)
        c = 0
        while k%p == 0:
            k //= p
            c += 1
        if v < c: v = c
    r = r*pow(p,v,MOD)%MOD
print(r)
0