結果

問題 No.2318 Phys Bone Maker
ユーザー rlangevinrlangevin
提出日時 2023-05-27 19:21:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,724 ms / 3,000 ms
コード長 1,082 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-07 18:51:07
合計ジャッジ時間 17,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 1,724 ms
79,548 KB
testcase_03 AC 70 ms
59,520 KB
testcase_04 AC 79 ms
59,136 KB
testcase_05 AC 64 ms
59,520 KB
testcase_06 AC 65 ms
59,776 KB
testcase_07 AC 64 ms
64,640 KB
testcase_08 AC 96 ms
63,488 KB
testcase_09 AC 69 ms
59,264 KB
testcase_10 AC 101 ms
59,648 KB
testcase_11 AC 117 ms
59,648 KB
testcase_12 AC 172 ms
64,896 KB
testcase_13 AC 165 ms
68,992 KB
testcase_14 AC 83 ms
59,136 KB
testcase_15 AC 82 ms
59,392 KB
testcase_16 AC 67 ms
59,520 KB
testcase_17 AC 93 ms
59,776 KB
testcase_18 AC 161 ms
64,512 KB
testcase_19 AC 59 ms
59,264 KB
testcase_20 AC 74 ms
59,008 KB
testcase_21 AC 65 ms
59,264 KB
testcase_22 AC 68 ms
59,520 KB
testcase_23 AC 63 ms
59,136 KB
testcase_24 AC 88 ms
59,904 KB
testcase_25 AC 90 ms
59,520 KB
testcase_26 AC 104 ms
64,128 KB
testcase_27 AC 77 ms
59,520 KB
testcase_28 AC 62 ms
59,264 KB
testcase_29 AC 59 ms
59,392 KB
testcase_30 AC 60 ms
59,264 KB
testcase_31 AC 115 ms
59,520 KB
testcase_32 AC 76 ms
59,136 KB
testcase_33 AC 42 ms
53,632 KB
testcase_34 AC 97 ms
60,160 KB
testcase_35 AC 324 ms
77,560 KB
testcase_36 AC 874 ms
78,592 KB
testcase_37 AC 854 ms
78,720 KB
testcase_38 AC 988 ms
78,336 KB
testcase_39 AC 1,305 ms
79,464 KB
testcase_40 AC 1,283 ms
78,848 KB
testcase_41 AC 1,434 ms
79,320 KB
testcase_42 AC 1,534 ms
79,744 KB
testcase_43 AC 168 ms
68,096 KB
testcase_44 AC 502 ms
77,440 KB
testcase_45 AC 479 ms
77,228 KB
testcase_46 AC 1,496 ms
78,848 KB
testcase_47 AC 73 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def div(n):
    if n <= 0:
        return []
    S = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            S.add(i)
            S.add(n // i)
        i += 1
    return sorted(list(S))

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])

    return dict(arr)


N = int(input())
mod = 998244353
L = div(N)
M = len(L)

ans = [0] * M
ans[0] = 1
dic = []
for i in range(M):
    dic.append(factorization(L[i]))

for i in range(M):
    for j in range(i + 1, M):
        val = ans[i]
        if L[j] % L[i] != 0:
            continue
        for k, v in dic[j].items():
            if k not in dic[i]:
                continue
            else:
                if dic[i][k] == v:
                    val *= v + 1
            val %= mod
        ans[j] += val
        ans[j] %= mod
        
print(ans[-1])
0