結果

問題 No.1529 Constant Lcm
ユーザー ygd.ygd.
提出日時 2021-06-06 13:29:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,857 ms / 3,000 ms
コード長 1,955 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 306,924 KB
最終ジャッジ日時 2024-11-22 20:02:22
合計ジャッジ時間 29,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 74 ms
68,992 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 40 ms
54,272 KB
testcase_08 AC 43 ms
54,272 KB
testcase_09 AC 44 ms
53,504 KB
testcase_10 AC 2,555 ms
285,952 KB
testcase_11 AC 758 ms
153,120 KB
testcase_12 AC 110 ms
79,232 KB
testcase_13 AC 2,016 ms
255,012 KB
testcase_14 AC 1,075 ms
182,340 KB
testcase_15 AC 1,154 ms
185,448 KB
testcase_16 AC 935 ms
170,068 KB
testcase_17 AC 455 ms
123,560 KB
testcase_18 AC 491 ms
121,604 KB
testcase_19 AC 1,149 ms
182,620 KB
testcase_20 AC 2,807 ms
305,148 KB
testcase_21 AC 2,811 ms
305,396 KB
testcase_22 AC 2,788 ms
303,604 KB
testcase_23 AC 2,857 ms
306,924 KB
testcase_24 AC 2,814 ms
303,744 KB
testcase_25 AC 2,825 ms
301,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict 

def get_sieve_of_eratosthenes(n):
    if not isinstance(n, int):
        raise TypeError('n is int type.')
    if n < 2:
        raise ValueError('n is more than 2') #nが1の場合はエラーを返す。
    prime = [2]
    if n == 2:
        return prime
    limit = int(n**0.5) #ルートn以上で割れることはない
    data = [i + 1 for i in range(2, n, 2)] #最初から3スタートの奇数にしておく
    while True:
        p = data[0]
        if limit < p: #ここでイコールが入るとlimitが素数の時にlimit^2が残ってダメ。
            return prime + data
        prime.append(p) #ここで一番最初に取り出した素数を加える
        data = [e for e in data if e % p != 0] #残りでその素数で割れない数字を取得。

def main():
    n = int(input()); MOD = 998244353
    if n == 3:
        print(2);exit()
    if n == 5:
        print(12);exit()
    Prime = get_sieve_of_eratosthenes(n)
    m = n//2
    mx = m*2 #数列の長さ*2
    L = [defaultdict(int) for _ in range(m)]
    ans_dic = defaultdict(int)
    #print(Prime)

    for x in Prime:
        val = x
        #cnt = 1
        while val < n:
            idx = val
            #print(idx)
            while idx < mx:
                if idx <= m:
                    loc = idx - 1
                else:
                    loc = n - 1 - idx
                #print("x",x,loc,idx)
                L[loc][x] += 1
                if n%2 == 0 and loc == m - 1:
                    L[loc][x] += 1
                ans_dic[x] = max(ans_dic[x], L[loc][x])
                idx += val
                
                #print(idx)
            #print(L)
            val *= x
            #cnt += 1
    #print(ans_dic)
    ans = 1
    for x in ans_dic.keys():
        val = ans_dic[x]
        ans *= pow(x,val,MOD)
        ans %= MOD
    print(ans)    




if __name__ == '__main__':
    main()
0