結果

問題 No.2318 Phys Bone Maker
ユーザー miya145592miya145592
提出日時 2023-05-27 01:00:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,494 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 80,432 KB
最終ジャッジ日時 2024-06-07 10:09:08
合計ジャッジ時間 30,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,596 KB
testcase_01 AC 42 ms
55,604 KB
testcase_02 TLE -
testcase_03 AC 70 ms
60,544 KB
testcase_04 AC 76 ms
60,228 KB
testcase_05 AC 63 ms
60,132 KB
testcase_06 AC 64 ms
60,824 KB
testcase_07 AC 64 ms
66,996 KB
testcase_08 AC 100 ms
67,220 KB
testcase_09 AC 67 ms
60,380 KB
testcase_10 AC 97 ms
60,644 KB
testcase_11 AC 114 ms
61,312 KB
testcase_12 AC 171 ms
66,520 KB
testcase_13 AC 174 ms
75,128 KB
testcase_14 AC 81 ms
60,648 KB
testcase_15 AC 79 ms
60,284 KB
testcase_16 AC 67 ms
61,964 KB
testcase_17 AC 92 ms
61,144 KB
testcase_18 AC 161 ms
68,404 KB
testcase_19 AC 61 ms
61,056 KB
testcase_20 AC 73 ms
60,284 KB
testcase_21 AC 64 ms
60,660 KB
testcase_22 AC 67 ms
61,468 KB
testcase_23 AC 63 ms
60,484 KB
testcase_24 AC 86 ms
60,652 KB
testcase_25 AC 90 ms
61,240 KB
testcase_26 AC 104 ms
67,012 KB
testcase_27 AC 77 ms
60,760 KB
testcase_28 AC 60 ms
60,308 KB
testcase_29 AC 59 ms
61,348 KB
testcase_30 AC 59 ms
59,852 KB
testcase_31 AC 113 ms
60,948 KB
testcase_32 AC 75 ms
60,068 KB
testcase_33 AC 41 ms
55,776 KB
testcase_34 AC 93 ms
60,524 KB
testcase_35 AC 444 ms
78,392 KB
testcase_36 AC 1,790 ms
80,228 KB
testcase_37 AC 1,799 ms
79,692 KB
testcase_38 AC 1,854 ms
79,748 KB
testcase_39 AC 2,766 ms
80,420 KB
testcase_40 AC 2,811 ms
80,036 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 174 ms
72,212 KB
testcase_44 AC 659 ms
78,136 KB
testcase_45 AC 620 ms
78,508 KB
testcase_46 TLE -
testcase_47 AC 73 ms
61,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import math

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr

MOD = 998244353
N = int(input())
Y = make_divisors(N)
F = []
for y in Y:
    f = factorization(y)
    d = dict()
    for p, e in f:
        d[p] = e
    F.append(d)
dp = [0 for _ in range(len(Y))]
dp[0] = 1
for i in range(len((Y))):
    for j in range(i+1, len(Y)):
        #Y[i] -> Y[j]
        temp = dp[i]
        for p in F[i]:
            if p==1:
                continue
            if p not in F[j]:
                temp*=0
                break
            else:
                ej = F[j][p]
                ei = F[i][p]
                if ei>ej:
                    temp*=0
                    break
                elif ei==ej:
                    temp*=(ej+1)
                    temp%=MOD
                else:
                    temp*=1
        dp[j] = (dp[j]+temp)%MOD
print(dp[-1])
0