結果

問題 No.1529 Constant Lcm
ユーザー moharan627moharan627
提出日時 2021-06-04 21:56:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 3,000 ms
コード長 1,002 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-04-30 02:40:45
合計ジャッジ時間 3,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
64,768 KB
testcase_01 AC 62 ms
66,048 KB
testcase_02 AC 58 ms
65,152 KB
testcase_03 AC 62 ms
65,024 KB
testcase_04 AC 59 ms
64,768 KB
testcase_05 AC 59 ms
64,768 KB
testcase_06 AC 58 ms
65,280 KB
testcase_07 AC 59 ms
65,024 KB
testcase_08 AC 59 ms
64,768 KB
testcase_09 AC 58 ms
65,280 KB
testcase_10 AC 111 ms
81,024 KB
testcase_11 AC 86 ms
74,368 KB
testcase_12 AC 69 ms
69,632 KB
testcase_13 AC 103 ms
79,744 KB
testcase_14 AC 89 ms
76,544 KB
testcase_15 AC 90 ms
76,928 KB
testcase_16 AC 84 ms
75,008 KB
testcase_17 AC 76 ms
72,960 KB
testcase_18 AC 77 ms
72,832 KB
testcase_19 AC 88 ms
76,672 KB
testcase_20 AC 112 ms
82,304 KB
testcase_21 AC 116 ms
82,944 KB
testcase_22 AC 114 ms
82,688 KB
testcase_23 AC 111 ms
82,432 KB
testcase_24 AC 111 ms
82,304 KB
testcase_25 AC 111 ms
82,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    MAX = 1000010
    Prime = [True for i in range(MAX)]
    Prime[0] = False
    Prime[1] = False
    Product = []
    for i in range(2, N):
        if (Prime[i]):
            for j in range(2 * i, N, i):
                Prime[j] = False
            Tmp = i
            while(Tmp <= N-1):
                Tmp *=i
            Tmp = Tmp//i
            Tmp2 = N - Tmp
            More = 1
            while(Tmp2%i == 0 and Tmp2 > 0):
                Tmp2 = Tmp2//i
                More *= i
            Product.append(Tmp*More)
    #print(Product)
    Ans = 1
    for p in Product:
        Ans *= p
        Ans %= MOD2
    print(Ans % MOD2)
    return
solve()
0