結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 TLE -
testcase_03 AC 67 ms
58,552 KB
testcase_04 AC 73 ms
58,624 KB
testcase_05 AC 61 ms
57,856 KB
testcase_06 AC 62 ms
57,984 KB
testcase_07 AC 65 ms
63,744 KB
testcase_08 AC 99 ms
64,128 KB
testcase_09 AC 64 ms
58,752 KB
testcase_10 AC 94 ms
57,984 KB
testcase_11 AC 111 ms
58,368 KB
testcase_12 AC 166 ms
63,412 KB
testcase_13 AC 170 ms
72,064 KB
testcase_14 AC 79 ms
57,728 KB
testcase_15 AC 77 ms
58,368 KB
testcase_16 AC 66 ms
57,984 KB
testcase_17 AC 90 ms
58,112 KB
testcase_18 AC 159 ms
65,408 KB
testcase_19 AC 56 ms
58,368 KB
testcase_20 AC 70 ms
58,112 KB
testcase_21 AC 59 ms
58,116 KB
testcase_22 AC 64 ms
58,624 KB
testcase_23 AC 61 ms
58,368 KB
testcase_24 AC 83 ms
57,856 KB
testcase_25 AC 87 ms
58,112 KB
testcase_26 AC 104 ms
64,128 KB
testcase_27 AC 75 ms
58,752 KB
testcase_28 AC 58 ms
58,240 KB
testcase_29 AC 56 ms
57,984 KB
testcase_30 AC 59 ms
58,240 KB
testcase_31 AC 105 ms
58,368 KB
testcase_32 AC 73 ms
58,240 KB
testcase_33 AC 39 ms
52,736 KB
testcase_34 AC 88 ms
58,240 KB
testcase_35 AC 440 ms
77,380 KB
testcase_36 AC 1,735 ms
79,096 KB
testcase_37 AC 1,744 ms
78,928 KB
testcase_38 AC 1,819 ms
78,788 KB
testcase_39 AC 2,624 ms
79,304 KB
testcase_40 AC 2,644 ms
79,312 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 164 ms
68,992 KB
testcase_44 AC 633 ms
77,164 KB
testcase_45 AC 606 ms
77,580 KB
testcase_46 TLE -
testcase_47 AC 68 ms
58,192 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 = []
    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=temp*(ej+1)%MOD
        dp[j] = (dp[j]+temp)%MOD
print(dp[-1])
0