結果

問題 No.1529 Constant Lcm
ユーザー lemondolemondo
提出日時 2021-06-04 20:34:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 851 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 159,080 KB
最終ジャッジ日時 2024-11-19 09:35:28
合計ジャッジ時間 61,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,284 KB
testcase_01 AC 90 ms
159,080 KB
testcase_02 AC 42 ms
61,564 KB
testcase_03 AC 42 ms
135,264 KB
testcase_04 AC 42 ms
62,724 KB
testcase_05 AC 43 ms
61,244 KB
testcase_06 AC 45 ms
61,172 KB
testcase_07 AC 43 ms
135,752 KB
testcase_08 AC 42 ms
61,396 KB
testcase_09 AC 42 ms
136,352 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 160 ms
83,864 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return list(map(int, input().split()))
sys.setrecursionlimit(10**9)

N = int(input())
mod = 998244353

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

from collections import Counter, defaultdict
count = []
# for i in range(1, N):
#     count.append(Counter(prime_factorize(i)))
primes = defaultdict(int)
for i in range(1, N):
    count = Counter(prime_factorize(i*(N-i)))
    for key in count.keys():
        primes[key] = max(count[key], primes[key])

ans = 1
for key in primes.keys():
    ans *= pow(key, primes[key], mod)
    ans %= mod
print(ans)
0