結果

問題 No.2318 Phys Bone Maker
ユーザー miya145592miya145592
提出日時 2023-05-27 01:07:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,288 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 79,644 KB
最終ジャッジ日時 2024-06-07 10:16:30
合計ジャッジ時間 30,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,544 KB
testcase_01 AC 39 ms
52,620 KB
testcase_02 TLE -
testcase_03 AC 65 ms
59,516 KB
testcase_04 AC 73 ms
59,040 KB
testcase_05 AC 59 ms
58,864 KB
testcase_06 AC 60 ms
58,184 KB
testcase_07 AC 60 ms
63,736 KB
testcase_08 AC 96 ms
64,312 KB
testcase_09 AC 65 ms
59,716 KB
testcase_10 AC 96 ms
59,052 KB
testcase_11 AC 110 ms
60,004 KB
testcase_12 AC 168 ms
63,472 KB
testcase_13 AC 169 ms
72,228 KB
testcase_14 AC 81 ms
58,060 KB
testcase_15 AC 75 ms
59,004 KB
testcase_16 AC 63 ms
59,420 KB
testcase_17 AC 91 ms
59,792 KB
testcase_18 AC 154 ms
65,936 KB
testcase_19 AC 56 ms
58,112 KB
testcase_20 AC 67 ms
59,192 KB
testcase_21 AC 60 ms
59,748 KB
testcase_22 AC 64 ms
58,780 KB
testcase_23 AC 61 ms
59,700 KB
testcase_24 AC 83 ms
58,976 KB
testcase_25 AC 83 ms
58,240 KB
testcase_26 AC 101 ms
64,184 KB
testcase_27 AC 74 ms
58,800 KB
testcase_28 AC 58 ms
59,036 KB
testcase_29 AC 53 ms
58,316 KB
testcase_30 AC 54 ms
57,984 KB
testcase_31 AC 110 ms
58,824 KB
testcase_32 AC 72 ms
59,524 KB
testcase_33 AC 38 ms
52,744 KB
testcase_34 AC 89 ms
60,104 KB
testcase_35 AC 446 ms
77,240 KB
testcase_36 AC 1,785 ms
79,120 KB
testcase_37 AC 1,773 ms
78,964 KB
testcase_38 AC 1,847 ms
79,124 KB
testcase_39 AC 2,706 ms
79,424 KB
testcase_40 AC 2,683 ms
79,360 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 163 ms
69,136 KB
testcase_44 AC 653 ms
77,352 KB
testcase_45 AC 616 ms
77,440 KB
testcase_46 TLE -
testcase_47 AC 72 ms
58,452 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
        dp[j] = (dp[j]+temp)%MOD
print(dp[-1])
0