結果

問題 No.1396 Giri
ユーザー ygd.ygd.
提出日時 2021-06-30 23:20:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,572 KB
最終ジャッジ日時 2024-06-27 09:11:15
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 191 ms
22,528 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 194 ms
22,572 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 30 ms
11,008 KB
testcase_18 AC 41 ms
11,776 KB
testcase_19 AC 115 ms
16,980 KB
testcase_20 AC 142 ms
19,416 KB
testcase_21 AC 172 ms
21,376 KB
testcase_22 AC 191 ms
22,144 KB
testcase_23 AC 200 ms
22,528 KB
testcase_24 AC 189 ms
22,352 KB
testcase_25 AC 189 ms
22,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def prime_list(n):
    is_prime = [0] * (n + 1) #素数かどうか。1なら素数。
    is_prime[2] = 1
    for i in range(3, n + 1, 2):
        is_prime[i] = 1
    for i in range(2, int(n ** 0.5) + 1):
        if is_prime[i]:
            for j in range(i * i, n + 1, 2 * i):
                is_prime[j] = 0
    #最後に全部並べる。
    d = []
    for j in range(n + 1):
        if is_prime[j] == 1:
            d.append(j)
    return d, is_prime

def main():
    N = int(input()); MOD = 998244353
    L = prime_list(N)
    #print(L)
    req = L[0][:-1]
    #print(req)
    ans = 1
    for x in req:
        num = 1
        val = x
        while val*x <= N:
            num += 1
            val *= x
        ans *= pow(x,num,MOD)
        ans %= MOD
    print(ans)
if __name__ == '__main__':
    main()
0