結果

問題 No.1396 Giri
ユーザー noriocnorioc
提出日時 2024-08-15 09:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-08-15 09:42:48
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 93 ms
80,896 KB
testcase_03 AC 38 ms
51,756 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 99 ms
81,152 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 36 ms
52,272 KB
testcase_08 AC 36 ms
51,584 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 55 ms
52,096 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 42 ms
57,472 KB
testcase_17 AC 50 ms
62,548 KB
testcase_18 AC 55 ms
64,640 KB
testcase_19 AC 72 ms
72,816 KB
testcase_20 AC 82 ms
76,416 KB
testcase_21 AC 90 ms
79,232 KB
testcase_22 AC 90 ms
81,536 KB
testcase_23 AC 92 ms
81,152 KB
testcase_24 AC 95 ms
81,280 KB
testcase_25 AC 93 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
    ps = [2]
    t = [True] * (n + 1)
    for i in range(3, n+1, 2):
        if t[i]:
            ps.append(i)
            for j in range(i+i, n+1, i):
                t[j] = False
    return ps


MOD = 998244353
N = int(input())
ps = primes(N)
ps.pop()

ans = 1
for p in ps:
    x = p
    while x*p <= N:
        x *= p
        x %= MOD
    ans *= x
    ans %= MOD

print(ans)
0