結果

問題 No.2318 Phys Bone Maker
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-02-22 02:11:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,186 ms / 3,000 ms
コード長 1,086 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 76,220 KB
最終ジャッジ日時 2024-09-18 12:55:02
合計ジャッジ時間 11,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,928 KB
testcase_01 AC 35 ms
52,768 KB
testcase_02 AC 1,186 ms
75,996 KB
testcase_03 AC 47 ms
60,132 KB
testcase_04 AC 45 ms
57,412 KB
testcase_05 AC 44 ms
57,400 KB
testcase_06 AC 46 ms
57,808 KB
testcase_07 AC 48 ms
62,480 KB
testcase_08 AC 52 ms
62,660 KB
testcase_09 AC 42 ms
58,012 KB
testcase_10 AC 50 ms
58,404 KB
testcase_11 AC 47 ms
58,684 KB
testcase_12 AC 57 ms
61,640 KB
testcase_13 AC 69 ms
69,120 KB
testcase_14 AC 45 ms
59,320 KB
testcase_15 AC 49 ms
58,464 KB
testcase_16 AC 49 ms
58,320 KB
testcase_17 AC 54 ms
59,280 KB
testcase_18 AC 62 ms
63,604 KB
testcase_19 AC 40 ms
59,236 KB
testcase_20 AC 46 ms
58,620 KB
testcase_21 AC 46 ms
57,652 KB
testcase_22 AC 46 ms
59,420 KB
testcase_23 AC 43 ms
57,688 KB
testcase_24 AC 47 ms
58,884 KB
testcase_25 AC 47 ms
58,872 KB
testcase_26 AC 54 ms
63,272 KB
testcase_27 AC 49 ms
59,076 KB
testcase_28 AC 44 ms
57,760 KB
testcase_29 AC 44 ms
58,632 KB
testcase_30 AC 47 ms
59,272 KB
testcase_31 AC 52 ms
57,688 KB
testcase_32 AC 49 ms
58,272 KB
testcase_33 AC 35 ms
52,684 KB
testcase_34 AC 47 ms
58,368 KB
testcase_35 AC 192 ms
76,004 KB
testcase_36 AC 664 ms
75,928 KB
testcase_37 AC 599 ms
75,712 KB
testcase_38 AC 672 ms
75,828 KB
testcase_39 AC 950 ms
76,220 KB
testcase_40 AC 868 ms
75,988 KB
testcase_41 AC 1,098 ms
75,944 KB
testcase_42 AC 1,049 ms
76,156 KB
testcase_43 AC 65 ms
65,476 KB
testcase_44 AC 213 ms
75,896 KB
testcase_45 AC 199 ms
76,172 KB
testcase_46 AC 1,158 ms
75,980 KB
testcase_47 AC 54 ms
58,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
input = sys.stdin.readline
def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]
            
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 or n%v:continue
        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