結果

問題 No.1396 Giri
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-22 17:34:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 79,164 KB
最終ジャッジ日時 2024-07-04 06:28:15
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,912 KB
testcase_01 AC 36 ms
52,616 KB
testcase_02 AC 85 ms
78,292 KB
testcase_03 AC 37 ms
53,128 KB
testcase_04 AC 37 ms
52,616 KB
testcase_05 AC 78 ms
79,164 KB
testcase_06 AC 37 ms
52,496 KB
testcase_07 AC 37 ms
52,280 KB
testcase_08 AC 36 ms
52,944 KB
testcase_09 AC 36 ms
53,132 KB
testcase_10 AC 37 ms
52,504 KB
testcase_11 AC 37 ms
52,204 KB
testcase_12 AC 37 ms
52,688 KB
testcase_13 AC 37 ms
52,812 KB
testcase_14 AC 36 ms
52,408 KB
testcase_15 AC 38 ms
52,936 KB
testcase_16 AC 42 ms
59,164 KB
testcase_17 AC 47 ms
61,728 KB
testcase_18 AC 48 ms
64,140 KB
testcase_19 AC 62 ms
70,860 KB
testcase_20 AC 69 ms
74,104 KB
testcase_21 AC 76 ms
77,820 KB
testcase_22 AC 78 ms
77,964 KB
testcase_23 AC 80 ms
78,576 KB
testcase_24 AC 78 ms
78,376 KB
testcase_25 AC 81 ms
78,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353

count = [0]*(n+1)
primes = []
for i in range(2,n+1):
    if count[i]:
        continue
    primes.append(i)
    for j in range(i,n+1,i):
        count[j] = 1

ans = 1
for p in primes[:len(primes)-1]:
    now = p
    while now <= n:
        ans *= p
        ans %= mod
        now *= p
    
print(ans)
0