結果

問題 No.1396 Giri
ユーザー shotoyooshotoyoo
提出日時 2021-02-14 21:38:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 950 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-07-22 09:03:12
合計ジャッジ時間 10,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,504 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 1,000 ms
114,560 KB
testcase_03 AC 46 ms
53,376 KB
testcase_04 AC 47 ms
53,888 KB
testcase_05 AC 1,034 ms
114,816 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 49 ms
53,888 KB
testcase_09 RE -
testcase_10 AC 48 ms
53,888 KB
testcase_11 AC 47 ms
53,376 KB
testcase_12 AC 46 ms
53,888 KB
testcase_13 AC 47 ms
54,016 KB
testcase_14 AC 47 ms
53,760 KB
testcase_15 AC 49 ms
54,016 KB
testcase_16 AC 81 ms
71,552 KB
testcase_17 AC 105 ms
77,568 KB
testcase_18 RE -
testcase_19 AC 552 ms
96,000 KB
testcase_20 AC 732 ms
104,832 KB
testcase_21 AC 923 ms
110,976 KB
testcase_22 AC 979 ms
114,816 KB
testcase_23 AC 1,003 ms
114,688 KB
testcase_24 AC 1,007 ms
114,816 KB
testcase_25 AC 1,005 ms
114,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")

n = int(input())
def hurui(n):
    pl = []
    mpf = [None]*(n+1)
    for d in range(2,n):
        if mpf[d] is None:
            mpf[d] = d
            pl.append(d)
        for p in pl:
            if p*d>n or p>mpf[d]:
                break
            mpf[p*d] = p
    return pl, mpf
from collections import defaultdict
def factor(num):
    d = defaultdict(int)
    if num==1:
        d.update({1:1})
        return d
    while num>1:
        d[mpf[num]] += 1
        num //= mpf[num]
    return d
ps,mpf = hurui(n)
for i in range(n, 1, -1):
    if mpf[i]==i:
        break
ans = 1
M = 998244353
d = defaultdict(int)
for j in range(1, n+1):
    if i==j:
        continue
    f = factor(j)
    for k,v in f.items():
        d[k] = max(d[k], v)
for k,v in d.items():
    ans *= pow(k,v,M)
    ans %= M
print(ans)
0