結果

問題 No.2318 Phys Bone Maker
ユーザー miya145592miya145592
提出日時 2023-05-27 01:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,729 ms / 3,000 ms
コード長 1,144 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 79,868 KB
最終ジャッジ日時 2024-06-07 10:32:47
合計ジャッジ時間 17,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,136 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 1,613 ms
79,868 KB
testcase_03 AC 65 ms
59,240 KB
testcase_04 AC 74 ms
59,176 KB
testcase_05 AC 61 ms
58,624 KB
testcase_06 AC 60 ms
59,064 KB
testcase_07 AC 54 ms
61,316 KB
testcase_08 AC 87 ms
61,532 KB
testcase_09 AC 64 ms
59,172 KB
testcase_10 AC 92 ms
58,112 KB
testcase_11 AC 109 ms
59,116 KB
testcase_12 AC 162 ms
62,040 KB
testcase_13 AC 156 ms
67,640 KB
testcase_14 AC 78 ms
58,936 KB
testcase_15 AC 78 ms
59,776 KB
testcase_16 AC 64 ms
57,904 KB
testcase_17 AC 88 ms
58,456 KB
testcase_18 AC 149 ms
62,864 KB
testcase_19 AC 55 ms
59,696 KB
testcase_20 AC 69 ms
59,060 KB
testcase_21 AC 60 ms
58,904 KB
testcase_22 AC 64 ms
58,372 KB
testcase_23 AC 61 ms
58,784 KB
testcase_24 AC 81 ms
58,768 KB
testcase_25 AC 86 ms
58,488 KB
testcase_26 AC 93 ms
61,408 KB
testcase_27 AC 73 ms
58,500 KB
testcase_28 AC 58 ms
58,152 KB
testcase_29 AC 53 ms
59,236 KB
testcase_30 AC 54 ms
58,708 KB
testcase_31 AC 106 ms
59,000 KB
testcase_32 AC 72 ms
59,568 KB
testcase_33 AC 38 ms
52,668 KB
testcase_34 AC 89 ms
58,620 KB
testcase_35 AC 322 ms
77,736 KB
testcase_36 AC 824 ms
78,884 KB
testcase_37 AC 802 ms
78,820 KB
testcase_38 AC 936 ms
78,904 KB
testcase_39 AC 1,427 ms
79,564 KB
testcase_40 AC 1,179 ms
79,540 KB
testcase_41 AC 1,363 ms
79,532 KB
testcase_42 AC 1,430 ms
79,808 KB
testcase_43 AC 155 ms
67,120 KB
testcase_44 AC 520 ms
77,740 KB
testcase_45 AC 479 ms
77,692 KB
testcase_46 AC 1,729 ms
79,728 KB
testcase_47 AC 69 ms
59,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = dict()
    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[i]=cnt

    if temp!=1:
        arr[temp]=1

    if len(arr)==0:
        arr[n]=1

    return arr

MOD = 998244353
N = int(input())
Y = make_divisors(N)
F = []
for y in Y:
    F.append(factorization(y))
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]
        if Y[j]%Y[i]!=0:
            continue
        temp = dp[i]
        for p in F[i]:
            if p==1:
                continue
            ej = F[j][p]
            ei = F[i][p]
            if ei==ej:
                temp=temp*(ej+1)%MOD
        dp[j] = (dp[j]+temp)%MOD
print(dp[-1])
0