結果

問題 No.1396 Giri
ユーザー lloyzlloyz
提出日時 2022-09-23 00:11:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-12-22 05:06:59
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 86 ms
71,936 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 87 ms
72,064 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 48 ms
58,880 KB
testcase_17 AC 49 ms
61,440 KB
testcase_18 AC 52 ms
62,336 KB
testcase_19 AC 71 ms
67,200 KB
testcase_20 AC 76 ms
69,248 KB
testcase_21 AC 84 ms
70,912 KB
testcase_22 AC 85 ms
72,192 KB
testcase_23 AC 85 ms
72,320 KB
testcase_24 AC 92 ms
72,064 KB
testcase_25 AC 85 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353

IsPrime = [True for _ in range(n + 1)]
IsPrime[0] = IsPrime[1] = False
PrimeSet = set()
for i in range(2, n + 1):
    if IsPrime[i]:
        for j in range(i * i, n + 1, i):
            IsPrime[j] = False

maxp = -1
for j in range(n, -1, -1):
    if IsPrime[j]:
        maxp = j
        break

ans = 1
for i in range(2, n + 1):
    if i == maxp:
        continue
    if IsPrime[i]:
        j = i
        while j * i <= n:
            j *= i
        ans *= j
        ans %= mod
print(ans)
0