結果

問題 No.2318 Phys Bone Maker
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-02-26 03:29:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,201 ms / 3,000 ms
コード長 945 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 76,664 KB
最終ジャッジ日時 2024-09-18 12:58:11
合計ジャッジ時間 11,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,672 KB
testcase_01 AC 36 ms
53,136 KB
testcase_02 AC 1,174 ms
75,988 KB
testcase_03 AC 45 ms
58,976 KB
testcase_04 AC 44 ms
58,192 KB
testcase_05 AC 44 ms
58,736 KB
testcase_06 AC 44 ms
59,228 KB
testcase_07 AC 49 ms
63,008 KB
testcase_08 AC 51 ms
63,080 KB
testcase_09 AC 42 ms
57,880 KB
testcase_10 AC 49 ms
59,008 KB
testcase_11 AC 47 ms
59,516 KB
testcase_12 AC 56 ms
62,140 KB
testcase_13 AC 67 ms
68,288 KB
testcase_14 AC 43 ms
58,512 KB
testcase_15 AC 42 ms
58,992 KB
testcase_16 AC 41 ms
57,812 KB
testcase_17 AC 48 ms
59,112 KB
testcase_18 AC 57 ms
64,012 KB
testcase_19 AC 39 ms
57,584 KB
testcase_20 AC 43 ms
57,508 KB
testcase_21 AC 43 ms
58,920 KB
testcase_22 AC 44 ms
60,236 KB
testcase_23 AC 43 ms
57,784 KB
testcase_24 AC 48 ms
57,916 KB
testcase_25 AC 45 ms
58,120 KB
testcase_26 AC 54 ms
63,344 KB
testcase_27 AC 47 ms
58,248 KB
testcase_28 AC 42 ms
58,988 KB
testcase_29 AC 41 ms
59,452 KB
testcase_30 AC 40 ms
57,260 KB
testcase_31 AC 51 ms
57,924 KB
testcase_32 AC 46 ms
58,436 KB
testcase_33 AC 34 ms
52,532 KB
testcase_34 AC 46 ms
57,708 KB
testcase_35 AC 187 ms
76,352 KB
testcase_36 AC 671 ms
76,256 KB
testcase_37 AC 590 ms
76,108 KB
testcase_38 AC 701 ms
75,984 KB
testcase_39 AC 958 ms
76,664 KB
testcase_40 AC 880 ms
76,060 KB
testcase_41 AC 1,092 ms
76,152 KB
testcase_42 AC 1,031 ms
76,632 KB
testcase_43 AC 61 ms
64,968 KB
testcase_44 AC 208 ms
75,944 KB
testcase_45 AC 194 ms
76,392 KB
testcase_46 AC 1,201 ms
76,632 KB
testcase_47 AC 50 ms
58,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
input = sys.stdin.readline
            
def main():
    n=int(input())
    l=list()
    for v in range(1,int(math.sqrt(n))+1):
        if n%v==0:
            l.append(v)
            if v < n//v: 
                l.append(n//v)

    l.sort()
    s=len(l)
    p=list()
    for v in l:
        if v!=1 and n%v == 0:            
            p.append(v)
            while n%v==0:
                n//=v

    dp=[0]*s
    dp[0]=1
    for i in range(s):
        for j in range(i+1,s):
            if l[j]%l[i]!=0:
                continue
            v=l[j]//l[i]
            add=dp[i]
            for pv in p:
                if v%pv==0:
                    continue
                cnt=1
                vi=l[i]
                while vi%pv==0:
                    vi//=pv
                    cnt+=1
                add*=cnt
            dp[j]=(dp[j]+add)%998244353
    print(dp[-1])
        
if __name__ == "__main__":
    main()
0