結果

問題 No.2318 Phys Bone Maker
ユーザー flygonflygon
提出日時 2023-05-26 22:24:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 832 ms / 3,000 ms
コード長 1,423 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-07 07:39:58
合計ジャッジ時間 10,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,784 KB
testcase_01 AC 46 ms
55,168 KB
testcase_02 AC 823 ms
78,592 KB
testcase_03 AC 63 ms
60,928 KB
testcase_04 AC 68 ms
60,416 KB
testcase_05 AC 66 ms
60,416 KB
testcase_06 AC 66 ms
60,544 KB
testcase_07 AC 65 ms
65,536 KB
testcase_08 AC 79 ms
65,152 KB
testcase_09 AC 65 ms
60,928 KB
testcase_10 AC 80 ms
60,288 KB
testcase_11 AC 71 ms
60,672 KB
testcase_12 AC 90 ms
65,024 KB
testcase_13 AC 98 ms
68,480 KB
testcase_14 AC 73 ms
60,800 KB
testcase_15 AC 70 ms
60,672 KB
testcase_16 AC 69 ms
60,672 KB
testcase_17 AC 79 ms
60,928 KB
testcase_18 AC 91 ms
66,048 KB
testcase_19 AC 60 ms
60,032 KB
testcase_20 AC 72 ms
60,800 KB
testcase_21 AC 68 ms
60,160 KB
testcase_22 AC 67 ms
60,544 KB
testcase_23 AC 66 ms
60,416 KB
testcase_24 AC 76 ms
60,544 KB
testcase_25 AC 72 ms
60,032 KB
testcase_26 AC 83 ms
64,896 KB
testcase_27 AC 77 ms
60,672 KB
testcase_28 AC 65 ms
60,160 KB
testcase_29 AC 63 ms
60,288 KB
testcase_30 AC 60 ms
60,160 KB
testcase_31 AC 79 ms
60,416 KB
testcase_32 AC 74 ms
60,288 KB
testcase_33 AC 47 ms
55,040 KB
testcase_34 AC 73 ms
61,184 KB
testcase_35 AC 182 ms
77,952 KB
testcase_36 AC 508 ms
78,592 KB
testcase_37 AC 446 ms
78,464 KB
testcase_38 AC 464 ms
78,336 KB
testcase_39 AC 626 ms
78,592 KB
testcase_40 AC 631 ms
78,336 KB
testcase_41 AC 822 ms
78,848 KB
testcase_42 AC 708 ms
78,336 KB
testcase_43 AC 106 ms
70,528 KB
testcase_44 AC 196 ms
77,824 KB
testcase_45 AC 195 ms
77,952 KB
testcase_46 AC 832 ms
78,720 KB
testcase_47 AC 76 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
mod = 998244353

def fact(n):
    l = set()
    for i in range(1,int(pow(n,0.5))+1):
        if n % i == 0:
            l.add(i)
            l.add(n//i)
    return sorted(list(l))

def pfact(n):
    l = []
    tmp = n
    for i in range(2,int(pow(n,0.5))+1):
        if tmp % i == 0:
            cnt = 0
            while tmp % i == 0:
                cnt += 1
                tmp //= i
            l.append([i,cnt])
    if tmp != 1:
        l.append([tmp,1])
    return l

fn = fact(n)
pp = [i for i,j in pfact(n)]
d = [[0]*(len(pp)) for i in range(len(fn))]
for i in range(len(fn)):
    now = fn[i]
    for j in range(len(pp)):
        while now % pp[j] == 0:
            d[i][j] += 1
            now //= pp[j]

cnt = defaultdict(int)
for i in range(len(fn)):
    tmp = 1
    for j in range(len(pp)):
        tmp *= d[i][j] + 1
    cnt[fn[i]] = tmp

dp = [1]*(len(fn))
for i in range(1,len(fn)):
    for j in range(i+1,len(fn)):
        if fn[j] % fn[i] != 0: continue
        tmp = fn[j] // fn[i]
        tmp = 1
        for k in range(len(pp)):
            if d[i][k] == d[j][k]:
                tmp *= d[i][k] + 1
        dp[j] += dp[i] * tmp
        dp[j] %= mod
print(dp[-1])
0