結果

問題 No.1396 Giri
ユーザー ayaoniayaoni
提出日時 2021-02-17 02:58:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 75,744 KB
最終ジャッジ日時 2024-09-13 14:31:17
合計ジャッジ時間 2,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,636 KB
testcase_01 AC 39 ms
53,192 KB
testcase_02 AC 71 ms
74,432 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 39 ms
52,716 KB
testcase_05 AC 69 ms
75,564 KB
testcase_06 AC 38 ms
52,720 KB
testcase_07 AC 39 ms
53,728 KB
testcase_08 AC 39 ms
53,252 KB
testcase_09 AC 39 ms
52,264 KB
testcase_10 AC 39 ms
53,952 KB
testcase_11 AC 41 ms
53,200 KB
testcase_12 AC 40 ms
53,484 KB
testcase_13 AC 39 ms
52,732 KB
testcase_14 AC 40 ms
52,800 KB
testcase_15 AC 39 ms
52,784 KB
testcase_16 AC 42 ms
58,664 KB
testcase_17 AC 46 ms
61,756 KB
testcase_18 AC 48 ms
62,568 KB
testcase_19 AC 59 ms
68,096 KB
testcase_20 AC 69 ms
71,996 KB
testcase_21 AC 68 ms
73,344 KB
testcase_22 AC 70 ms
74,868 KB
testcase_23 AC 70 ms
75,100 KB
testcase_24 AC 70 ms
75,744 KB
testcase_25 AC 71 ms
75,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()


def sieve_of_eratosthenes(n):  # n以下の素数の全列挙
    prime_list = []
    is_prime = [1]*(n+1)  # A[i] = iが素数なら1,その他は0
    is_prime[0] = is_prime[1] = 0
    for i in range(2,int(n**.5)+1):
        if is_prime[i]:
            prime_list.append(i)
            for j in range(i**2,n+1,i):
                is_prime[j] = 0
    for i in range(int(n**.5)+1,n+1):
        if is_prime[i] == 1:
            prime_list.append(i)
    return prime_list


prime_list = sieve_of_eratosthenes(N)

ans = 1
mod = 998244353
for p in prime_list[:-1]:
    a = 1
    while a*p <= N:
        a *= p
    ans *= a
    ans %= mod

print(ans)
0