結果

問題 No.2318 Phys Bone Maker
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-02-21 22:48:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,296 ms / 3,000 ms
コード長 1,218 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 77,012 KB
最終ジャッジ日時 2024-09-18 12:55:53
合計ジャッジ時間 12,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,880 KB
testcase_01 AC 34 ms
54,392 KB
testcase_02 AC 1,296 ms
76,348 KB
testcase_03 AC 46 ms
59,604 KB
testcase_04 AC 47 ms
58,200 KB
testcase_05 AC 48 ms
58,676 KB
testcase_06 AC 46 ms
58,104 KB
testcase_07 AC 49 ms
64,812 KB
testcase_08 AC 56 ms
63,828 KB
testcase_09 AC 42 ms
57,840 KB
testcase_10 AC 50 ms
59,492 KB
testcase_11 AC 47 ms
60,076 KB
testcase_12 AC 57 ms
63,156 KB
testcase_13 AC 71 ms
69,656 KB
testcase_14 AC 44 ms
58,288 KB
testcase_15 AC 43 ms
58,820 KB
testcase_16 AC 43 ms
57,912 KB
testcase_17 AC 51 ms
59,900 KB
testcase_18 AC 61 ms
65,268 KB
testcase_19 AC 40 ms
57,780 KB
testcase_20 AC 46 ms
59,080 KB
testcase_21 AC 44 ms
58,032 KB
testcase_22 AC 45 ms
60,348 KB
testcase_23 AC 42 ms
57,788 KB
testcase_24 AC 49 ms
57,968 KB
testcase_25 AC 49 ms
59,732 KB
testcase_26 AC 57 ms
64,096 KB
testcase_27 AC 47 ms
59,232 KB
testcase_28 AC 41 ms
58,512 KB
testcase_29 AC 41 ms
58,320 KB
testcase_30 AC 39 ms
59,048 KB
testcase_31 AC 47 ms
58,336 KB
testcase_32 AC 46 ms
58,592 KB
testcase_33 AC 34 ms
52,932 KB
testcase_34 AC 48 ms
59,304 KB
testcase_35 AC 200 ms
76,560 KB
testcase_36 AC 716 ms
76,396 KB
testcase_37 AC 657 ms
76,108 KB
testcase_38 AC 708 ms
76,788 KB
testcase_39 AC 1,035 ms
77,012 KB
testcase_40 AC 974 ms
76,300 KB
testcase_41 AC 1,190 ms
76,552 KB
testcase_42 AC 1,136 ms
76,144 KB
testcase_43 AC 66 ms
66,548 KB
testcase_44 AC 222 ms
76,296 KB
testcase_45 AC 205 ms
76,512 KB
testcase_46 AC 1,232 ms
76,732 KB
testcase_47 AC 50 ms
58,316 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)
    p=list()
    for v in l:
        if v==1:continue
        isprime = True
        for v2 in l:
            if v2==1:continue
            if v==v2:continue
            isprime=isprime and v%v2>0
        if isprime==True:p.append(v)

    l.sort()
    s=len(l)
    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