結果

問題 No.2318 Phys Bone Maker
ユーザー mkawa2mkawa2
提出日時 2023-05-26 22:02:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,610 ms / 3,000 ms
コード長 1,776 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-07 06:54:09
合計ジャッジ時間 15,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 1,610 ms
77,952 KB
testcase_03 AC 54 ms
59,904 KB
testcase_04 AC 48 ms
57,728 KB
testcase_05 AC 47 ms
57,984 KB
testcase_06 AC 47 ms
57,984 KB
testcase_07 AC 63 ms
63,744 KB
testcase_08 AC 62 ms
63,744 KB
testcase_09 AC 49 ms
57,728 KB
testcase_10 AC 48 ms
57,600 KB
testcase_11 AC 56 ms
60,928 KB
testcase_12 AC 64 ms
63,872 KB
testcase_13 AC 69 ms
66,048 KB
testcase_14 AC 48 ms
57,728 KB
testcase_15 AC 48 ms
57,856 KB
testcase_16 AC 49 ms
57,472 KB
testcase_17 AC 53 ms
60,672 KB
testcase_18 AC 64 ms
64,512 KB
testcase_19 AC 47 ms
57,600 KB
testcase_20 AC 47 ms
57,472 KB
testcase_21 AC 47 ms
57,728 KB
testcase_22 AC 54 ms
60,672 KB
testcase_23 AC 48 ms
57,984 KB
testcase_24 AC 48 ms
57,728 KB
testcase_25 AC 49 ms
57,728 KB
testcase_26 AC 63 ms
64,000 KB
testcase_27 AC 49 ms
57,856 KB
testcase_28 AC 48 ms
57,600 KB
testcase_29 AC 47 ms
57,344 KB
testcase_30 AC 56 ms
57,984 KB
testcase_31 AC 54 ms
59,776 KB
testcase_32 AC 51 ms
57,472 KB
testcase_33 AC 42 ms
52,096 KB
testcase_34 AC 45 ms
52,992 KB
testcase_35 AC 276 ms
76,928 KB
testcase_36 AC 935 ms
78,080 KB
testcase_37 AC 870 ms
77,568 KB
testcase_38 AC 796 ms
77,824 KB
testcase_39 AC 1,371 ms
77,952 KB
testcase_40 AC 1,240 ms
77,952 KB
testcase_41 AC 1,513 ms
78,208 KB
testcase_42 AC 1,351 ms
78,336 KB
testcase_43 AC 72 ms
66,176 KB
testcase_44 AC 181 ms
76,544 KB
testcase_45 AC 175 ms
76,672 KB
testcase_46 AC 1,247 ms
77,824 KB
testcase_47 AC 59 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

def prime_factorization(a):
    pp, ee = [], []
    if a & 1 == 0:
        pp += [2]
        ee += [0]
        while a & 1 == 0:
            a >>= 1
            ee[-1] += 1
    p = 3
    while p**2 <= a:
        if a%p == 0:
            pp += [p]
            ee += [0]
            while a%p == 0:
                a //= p
                ee[-1] += 1
        p += 2
    if a > 1:
        pp += [a]
        ee += [1]
    return pp, ee

n=II()
pp,ee=prime_factorization(n)

ss=[]
def dfs(i,arr):
    if i==len(pp):
        ss.append(arr)
        return
    for e in range(ee[i]+1):
        dfs(i+1,arr+[e])

dfs(0,[])

ia=[]
for i,s in enumerate(ss):
    a=1
    for p,e in zip(pp,s):a*=p**e
    ia.append((i,a))

ia.sort(key=lambda x:x[1])
dp=[0]*len(ia)
dp[0]=1
for i,a in ia:
    for j in range(i):
        c=1
        for e,f in zip(ss[j],ss[i]):
            if e>f:
                c=0
                break
            if e==f:
                c*=e+1
                c%=md
        dp[i]+=dp[j]*c%md
        dp[i]%=md

print(dp[-1])
0