結果

問題 No.1396 Giri
ユーザー rlangevinrlangevin
提出日時 2023-02-01 00:30:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 82,792 KB
最終ジャッジ日時 2024-07-01 00:10:45
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,472 KB
testcase_01 AC 38 ms
52,256 KB
testcase_02 AC 89 ms
81,540 KB
testcase_03 AC 36 ms
53,700 KB
testcase_04 AC 36 ms
53,192 KB
testcase_05 AC 86 ms
82,128 KB
testcase_06 AC 35 ms
52,692 KB
testcase_07 AC 35 ms
53,052 KB
testcase_08 AC 35 ms
53,124 KB
testcase_09 AC 38 ms
52,584 KB
testcase_10 AC 35 ms
53,784 KB
testcase_11 AC 36 ms
52,588 KB
testcase_12 AC 37 ms
52,732 KB
testcase_13 AC 37 ms
53,004 KB
testcase_14 AC 35 ms
52,664 KB
testcase_15 AC 35 ms
52,380 KB
testcase_16 AC 38 ms
59,432 KB
testcase_17 AC 43 ms
61,656 KB
testcase_18 AC 47 ms
63,128 KB
testcase_19 AC 69 ms
72,264 KB
testcase_20 AC 78 ms
76,416 KB
testcase_21 AC 81 ms
78,904 KB
testcase_22 AC 84 ms
81,404 KB
testcase_23 AC 86 ms
82,792 KB
testcase_24 AC 85 ms
81,520 KB
testcase_25 AC 86 ms
81,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *


def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S

N = int(input())
mod = 998244353
S = Sieve(N)
maxv = max(S)
ans = 1
for i in S:
    if i == maxv:
        continue
    val = 1
    while val <= N:
        val *= i
    val //= i
    ans *= val
    ans %= mod
print(ans)
0