結果

問題 No.1396 Giri
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-05 16:39:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-07-07 07:52:31
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,712 KB
testcase_01 AC 30 ms
52,096 KB
testcase_02 AC 70 ms
73,856 KB
testcase_03 AC 30 ms
51,712 KB
testcase_04 AC 30 ms
52,352 KB
testcase_05 AC 68 ms
73,728 KB
testcase_06 AC 32 ms
52,096 KB
testcase_07 AC 31 ms
51,968 KB
testcase_08 AC 30 ms
52,224 KB
testcase_09 AC 29 ms
51,712 KB
testcase_10 AC 31 ms
52,096 KB
testcase_11 AC 30 ms
52,096 KB
testcase_12 AC 34 ms
52,096 KB
testcase_13 AC 31 ms
52,224 KB
testcase_14 AC 30 ms
51,840 KB
testcase_15 AC 32 ms
52,096 KB
testcase_16 AC 35 ms
57,856 KB
testcase_17 AC 39 ms
60,544 KB
testcase_18 AC 41 ms
61,568 KB
testcase_19 AC 58 ms
67,456 KB
testcase_20 AC 67 ms
70,144 KB
testcase_21 AC 67 ms
72,320 KB
testcase_22 AC 73 ms
73,856 KB
testcase_23 AC 72 ms
74,112 KB
testcase_24 AC 72 ms
74,112 KB
testcase_25 AC 68 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

import math

def sieve(n):
    ass = []
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, int(math.sqrt(n))+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    for i in range(n+1):
        if is_prime[i]:
            ass.append(i)
    return(ass)

mod = 998244353

P = sieve(n)
M = max(P)
l = 1
for p in P:
    if p == M:
        continue
    x = 1
    cnt = 0
    while True:
        if x*p <= n:
            cnt += 1
            x *= p
        else:
            break
    l *= pow(p, cnt, mod)
    l %= mod
print(l)
0