結果

問題 No.1396 Giri
ユーザー convexineqconvexineq
提出日時 2021-02-14 21:33:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-22 08:54:34
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 97 ms
80,640 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
52,468 KB
testcase_05 AC 97 ms
80,768 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 45 ms
51,840 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 AC 48 ms
60,288 KB
testcase_18 AC 51 ms
61,568 KB
testcase_19 AC 72 ms
70,912 KB
testcase_20 AC 80 ms
75,392 KB
testcase_21 AC 89 ms
78,592 KB
testcase_22 AC 94 ms
80,512 KB
testcase_23 AC 95 ms
80,768 KB
testcase_24 AC 96 ms
80,256 KB
testcase_25 AC 98 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    #iが素数のときis_prime_list[i]=1,それ以外は0
    N+=1
    is_prime_list = [True]*N
#    is_prime_list[0], is_prime_list[1] = False, False #リストが必要なときはこの2行を有効化
#    for j in range(4,N,2): is_prime_list[j] = False
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]
#    return is_prime_list

n = int(input())
primes = Eratosthenes(n)
primes.pop()
ans = 1
MOD = 998244353
for p in primes:
    c = 0
    nn = n//p
    while nn:
        c += 1
        nn //= p
    ans *= pow(p,c,MOD)
    ans %= MOD
print(ans)
0