結果

問題 No.1529 Constant Lcm
ユーザー 👑 rin204rin204
提出日時 2022-01-27 00:18:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-06-06 08:05:23
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 46 ms
61,568 KB
testcase_02 AC 34 ms
51,456 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 34 ms
51,456 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
51,584 KB
testcase_08 WA -
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 174 ms
90,752 KB
testcase_11 AC 99 ms
73,472 KB
testcase_12 AC 52 ms
63,872 KB
testcase_13 AC 158 ms
86,400 KB
testcase_14 AC 119 ms
77,056 KB
testcase_15 WA -
testcase_16 AC 106 ms
74,624 KB
testcase_17 AC 82 ms
68,992 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 184 ms
91,392 KB
testcase_21 AC 185 ms
91,136 KB
testcase_22 WA -
testcase_23 AC 185 ms
91,776 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())

isprime = [True] * n
div = {}
for i in range(2, n):
    if not isprime[i]:
        continue
    max_ = 1
    for j in range(i * i, n, i):
        isprime[j] = False
        cnt = 0
        while j % i == 0:
            j //= i
            cnt += 1
        max_ = max(max_, cnt)
    if n % i == 0:
        max_ += 1
    div[i] = max_

ans = 1
for k, v in div.items():
    for _ in range(v):
        ans *= k
        ans %= MOD
print(ans % MOD)

0