結果

問題 No.2318 Phys Bone Maker
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-02-26 03:13:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,322 ms / 3,000 ms
コード長 928 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-09-18 12:57:29
合計ジャッジ時間 13,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 1,322 ms
76,288 KB
testcase_03 AC 53 ms
59,136 KB
testcase_04 AC 51 ms
57,856 KB
testcase_05 AC 52 ms
56,832 KB
testcase_06 AC 50 ms
57,856 KB
testcase_07 AC 52 ms
61,824 KB
testcase_08 AC 60 ms
62,080 KB
testcase_09 AC 50 ms
57,088 KB
testcase_10 AC 58 ms
57,600 KB
testcase_11 AC 53 ms
57,856 KB
testcase_12 AC 63 ms
61,824 KB
testcase_13 AC 76 ms
67,328 KB
testcase_14 AC 51 ms
57,472 KB
testcase_15 AC 50 ms
57,856 KB
testcase_16 AC 49 ms
57,856 KB
testcase_17 AC 57 ms
58,368 KB
testcase_18 AC 67 ms
62,592 KB
testcase_19 AC 47 ms
56,960 KB
testcase_20 AC 52 ms
57,728 KB
testcase_21 AC 50 ms
57,344 KB
testcase_22 AC 51 ms
58,752 KB
testcase_23 AC 49 ms
57,728 KB
testcase_24 AC 55 ms
57,728 KB
testcase_25 AC 53 ms
57,472 KB
testcase_26 AC 60 ms
62,464 KB
testcase_27 AC 54 ms
57,472 KB
testcase_28 AC 49 ms
57,600 KB
testcase_29 AC 50 ms
57,856 KB
testcase_30 AC 47 ms
57,344 KB
testcase_31 AC 58 ms
57,472 KB
testcase_32 AC 53 ms
57,088 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 54 ms
57,856 KB
testcase_35 AC 212 ms
76,412 KB
testcase_36 AC 744 ms
76,672 KB
testcase_37 AC 673 ms
76,032 KB
testcase_38 AC 763 ms
76,288 KB
testcase_39 AC 1,071 ms
76,604 KB
testcase_40 AC 992 ms
75,904 KB
testcase_41 AC 1,228 ms
76,160 KB
testcase_42 AC 1,171 ms
76,544 KB
testcase_43 AC 72 ms
64,640 KB
testcase_44 AC 230 ms
76,416 KB
testcase_45 AC 218 ms
75,904 KB
testcase_46 AC 1,281 ms
76,416 KB
testcase_47 AC 56 ms
57,728 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