結果

問題 No.1396 Giri
ユーザー terry_u16terry_u16
提出日時 2021-02-14 21:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 100,168 KB
最終ジャッジ日時 2024-07-22 09:18:45
合計ジャッジ時間 6,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,580 KB
testcase_01 AC 37 ms
52,552 KB
testcase_02 AC 591 ms
99,916 KB
testcase_03 AC 36 ms
53,124 KB
testcase_04 AC 36 ms
52,524 KB
testcase_05 AC 571 ms
100,044 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 37 ms
52,484 KB
testcase_08 AC 37 ms
53,724 KB
testcase_09 AC 37 ms
52,000 KB
testcase_10 AC 37 ms
53,536 KB
testcase_11 AC 37 ms
53,296 KB
testcase_12 AC 36 ms
52,488 KB
testcase_13 AC 36 ms
52,952 KB
testcase_14 AC 36 ms
53,424 KB
testcase_15 AC 37 ms
52,828 KB
testcase_16 AC 57 ms
67,000 KB
testcase_17 AC 67 ms
74,420 KB
testcase_18 AC 96 ms
77,260 KB
testcase_19 AC 312 ms
86,888 KB
testcase_20 AC 409 ms
93,568 KB
testcase_21 AC 511 ms
97,324 KB
testcase_22 AC 570 ms
99,820 KB
testcase_23 AC 576 ms
100,044 KB
testcase_24 AC 570 ms
100,088 KB
testcase_25 AC 587 ms
100,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())

erathosthenes = [1] * (n + 1)

for i in range(2, len(erathosthenes)):
    if erathosthenes[i] == 1:
        for j in range(i, len(erathosthenes), i):
            if erathosthenes[j] == 1:
                erathosthenes[j] = i

for i in reversed(range(1, len(erathosthenes))):
    if erathosthenes[i] == i:
        max_prime = i
        break

factors = {}

for i in range(1, len(erathosthenes)):
    if i != max_prime:
        current = i
        primes = {}
        while erathosthenes[current] > 1:
            p = erathosthenes[current]
            count = primes.get(p, 0)
            primes[p] = count + 1
            current //= p

        for p, count in primes.items():
            c = factors.get(p, 0)
            factors[p] = max(c, count)

result = 1

for p, count in factors.items():
    for _ in range(count):
        result *= p
        result %= mod
        
print(result)
0