結果

問題 No.1529 Constant Lcm
ユーザー moharan627moharan627
提出日時 2021-06-04 21:56:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 3,000 ms
コード長 1,002 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 82,888 KB
最終ジャッジ日時 2024-11-19 14:13:53
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
65,108 KB
testcase_01 AC 54 ms
66,560 KB
testcase_02 AC 52 ms
65,024 KB
testcase_03 AC 53 ms
65,024 KB
testcase_04 AC 52 ms
65,152 KB
testcase_05 AC 52 ms
65,024 KB
testcase_06 AC 53 ms
65,280 KB
testcase_07 AC 53 ms
64,896 KB
testcase_08 AC 53 ms
65,152 KB
testcase_09 AC 51 ms
65,408 KB
testcase_10 AC 100 ms
81,280 KB
testcase_11 AC 76 ms
74,496 KB
testcase_12 AC 62 ms
69,604 KB
testcase_13 AC 93 ms
79,688 KB
testcase_14 AC 80 ms
76,496 KB
testcase_15 AC 82 ms
76,800 KB
testcase_16 AC 77 ms
75,048 KB
testcase_17 AC 70 ms
72,928 KB
testcase_18 AC 73 ms
73,036 KB
testcase_19 AC 82 ms
76,672 KB
testcase_20 AC 103 ms
82,560 KB
testcase_21 AC 106 ms
82,832 KB
testcase_22 AC 107 ms
82,364 KB
testcase_23 AC 104 ms
82,552 KB
testcase_24 AC 103 ms
82,652 KB
testcase_25 AC 103 ms
82,888 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