結果

問題 No.2318 Phys Bone Maker
ユーザー miya145592miya145592
提出日時 2023-05-27 01:12:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,329 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-06-07 10:21:18
合計ジャッジ時間 29,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 TLE -
testcase_03 AC 64 ms
58,240 KB
testcase_04 AC 72 ms
58,240 KB
testcase_05 AC 61 ms
57,984 KB
testcase_06 AC 60 ms
57,728 KB
testcase_07 AC 62 ms
63,232 KB
testcase_08 AC 97 ms
63,616 KB
testcase_09 AC 62 ms
58,240 KB
testcase_10 AC 92 ms
58,240 KB
testcase_11 AC 104 ms
58,624 KB
testcase_12 AC 167 ms
63,232 KB
testcase_13 AC 168 ms
71,168 KB
testcase_14 AC 76 ms
57,984 KB
testcase_15 AC 73 ms
58,112 KB
testcase_16 AC 64 ms
57,984 KB
testcase_17 AC 87 ms
57,984 KB
testcase_18 AC 156 ms
64,768 KB
testcase_19 AC 55 ms
57,984 KB
testcase_20 AC 68 ms
57,984 KB
testcase_21 AC 60 ms
58,240 KB
testcase_22 AC 65 ms
58,112 KB
testcase_23 AC 62 ms
58,112 KB
testcase_24 AC 81 ms
57,984 KB
testcase_25 AC 85 ms
57,856 KB
testcase_26 AC 100 ms
63,872 KB
testcase_27 AC 73 ms
57,984 KB
testcase_28 AC 58 ms
58,112 KB
testcase_29 AC 56 ms
57,984 KB
testcase_30 AC 56 ms
57,984 KB
testcase_31 AC 103 ms
58,240 KB
testcase_32 AC 71 ms
57,856 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 89 ms
58,496 KB
testcase_35 AC 432 ms
77,440 KB
testcase_36 AC 1,753 ms
79,616 KB
testcase_37 AC 1,664 ms
79,488 KB
testcase_38 AC 1,773 ms
79,264 KB
testcase_39 AC 2,575 ms
79,744 KB
testcase_40 AC 2,577 ms
79,744 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 163 ms
68,352 KB
testcase_44 AC 632 ms
77,408 KB
testcase_45 AC 603 ms
77,776 KB
testcase_46 AC 2,998 ms
80,128 KB
testcase_47 AC 71 ms
57,728 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]
        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=temp*(ej+1)%MOD
        if temp==0:
            continue
        dp[j] = (dp[j]+temp)%MOD
print(dp[-1])
0