結果

問題 No.1396 Giri
ユーザー shotoyooshotoyoo
提出日時 2021-02-14 21:40:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 892 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 115,000 KB
最終ジャッジ日時 2024-07-22 09:07:41
合計ジャッジ時間 8,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,932 KB
testcase_01 AC 41 ms
54,260 KB
testcase_02 AC 863 ms
114,524 KB
testcase_03 AC 41 ms
54,848 KB
testcase_04 AC 43 ms
55,096 KB
testcase_05 AC 892 ms
114,936 KB
testcase_06 AC 43 ms
54,196 KB
testcase_07 AC 44 ms
56,044 KB
testcase_08 AC 41 ms
55,188 KB
testcase_09 AC 42 ms
54,264 KB
testcase_10 AC 42 ms
54,488 KB
testcase_11 AC 43 ms
54,576 KB
testcase_12 AC 40 ms
54,348 KB
testcase_13 AC 41 ms
55,660 KB
testcase_14 AC 42 ms
54,792 KB
testcase_15 AC 43 ms
54,632 KB
testcase_16 AC 66 ms
73,088 KB
testcase_17 AC 84 ms
77,392 KB
testcase_18 AC 124 ms
79,484 KB
testcase_19 AC 455 ms
96,060 KB
testcase_20 AC 606 ms
105,032 KB
testcase_21 AC 790 ms
110,840 KB
testcase_22 AC 835 ms
114,472 KB
testcase_23 AC 867 ms
115,000 KB
testcase_24 AC 878 ms
114,652 KB
testcase_25 AC 840 ms
114,924 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+10)
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