結果

問題 No.2318 Phys Bone Maker
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-27 10:20:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 3,000 ms
コード長 974 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 78,168 KB
最終ジャッジ日時 2024-06-07 14:36:48
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,416 KB
testcase_01 AC 38 ms
52,640 KB
testcase_02 AC 798 ms
78,168 KB
testcase_03 AC 60 ms
62,288 KB
testcase_04 AC 61 ms
59,568 KB
testcase_05 AC 60 ms
58,756 KB
testcase_06 AC 59 ms
58,840 KB
testcase_07 AC 54 ms
63,452 KB
testcase_08 AC 66 ms
64,060 KB
testcase_09 AC 56 ms
59,244 KB
testcase_10 AC 71 ms
59,676 KB
testcase_11 AC 65 ms
61,004 KB
testcase_12 AC 81 ms
63,200 KB
testcase_13 AC 85 ms
66,116 KB
testcase_14 AC 63 ms
60,864 KB
testcase_15 AC 60 ms
59,184 KB
testcase_16 AC 60 ms
58,456 KB
testcase_17 AC 72 ms
60,852 KB
testcase_18 AC 81 ms
64,752 KB
testcase_19 AC 52 ms
58,960 KB
testcase_20 AC 63 ms
58,708 KB
testcase_21 AC 59 ms
59,040 KB
testcase_22 AC 60 ms
61,252 KB
testcase_23 AC 57 ms
58,780 KB
testcase_24 AC 67 ms
59,940 KB
testcase_25 AC 62 ms
58,980 KB
testcase_26 AC 75 ms
63,820 KB
testcase_27 AC 67 ms
59,848 KB
testcase_28 AC 55 ms
58,956 KB
testcase_29 AC 56 ms
59,088 KB
testcase_30 AC 51 ms
59,520 KB
testcase_31 AC 71 ms
59,836 KB
testcase_32 AC 65 ms
60,032 KB
testcase_33 AC 38 ms
52,740 KB
testcase_34 AC 65 ms
60,928 KB
testcase_35 AC 155 ms
76,948 KB
testcase_36 AC 430 ms
77,708 KB
testcase_37 AC 426 ms
77,780 KB
testcase_38 AC 424 ms
77,864 KB
testcase_39 AC 597 ms
78,068 KB
testcase_40 AC 581 ms
78,096 KB
testcase_41 AC 674 ms
78,036 KB
testcase_42 AC 652 ms
77,956 KB
testcase_43 AC 88 ms
66,696 KB
testcase_44 AC 175 ms
77,152 KB
testcase_45 AC 167 ms
77,204 KB
testcase_46 AC 678 ms
77,952 KB
testcase_47 AC 68 ms
58,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
mod = 998244353

divs = set()
for i in range(1,int(n**0.5)+1):
    if n%i:
        continue
    divs.add(i)
    divs.add(n//i)

divs = sorted(divs)
le = len(divs)
primes = []


for i in range(2,int(n**0.5)+1):
    if n%i:
        continue
    primes.append(i)
    while n % i == 0:
        n //= i

if n != 1:
    primes.append(n)

div_count = [[0]*len(primes) for i in range(le)]

for i,div in enumerate(divs):
    now = div
    for j,prime in enumerate(primes):
        while now%prime == 0:
            now //= prime
            div_count[i][j] += 1

dp = [0]*le
dp[0] = 1
lp = len(primes)

for i in range(le-1):
    divi = div_count[i]
    for j in range(i+1,le):
        if divs[j]%divs[i]:
            continue
        divj = div_count[j]
        pat = 1
        for x in range(lp):
            if divi[x] == divj[x]:
                pat *= divi[x]+1
                pat %= mod
        dp[j] += dp[i]*pat
        dp[j] %= mod
print(dp[-1])
0