結果

問題 No.1396 Giri
ユーザー AEnAEn
提出日時 2022-06-15 00:51:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 69,376 KB
最終ジャッジ日時 2024-10-03 03:59:33
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 80 ms
68,736 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 75 ms
68,992 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 35 ms
52,608 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 35 ms
52,736 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 36 ms
52,480 KB
testcase_15 AC 36 ms
52,608 KB
testcase_16 AC 40 ms
58,624 KB
testcase_17 AC 42 ms
60,160 KB
testcase_18 AC 45 ms
60,672 KB
testcase_19 AC 61 ms
64,384 KB
testcase_20 AC 69 ms
66,560 KB
testcase_21 AC 74 ms
67,968 KB
testcase_22 AC 77 ms
68,864 KB
testcase_23 AC 77 ms
68,992 KB
testcase_24 AC 77 ms
69,376 KB
testcase_25 AC 78 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def sieve_of_eratosthenes(n):
    prime = [True]*(n+1)
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n+1):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime

N = int(input())
p = sieve_of_eratosthenes(N)
for i in reversed(range(N+1)):
    if p[i]:
        pp = i
        break

res = 1
mod = 998244353
for i in range(2,len(p)):
    if i == pp:
        break
    if p[i]:
        c = math.log(N)/math.log(i)
        res *= pow(i, int(c), mod)
        res %= mod
print(res)
0