結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,980 KB
testcase_01 AC 39 ms
52,628 KB
testcase_02 AC 609 ms
76,296 KB
testcase_03 AC 39 ms
59,596 KB
testcase_04 AC 37 ms
58,788 KB
testcase_05 AC 37 ms
58,360 KB
testcase_06 AC 36 ms
58,360 KB
testcase_07 AC 47 ms
65,584 KB
testcase_08 AC 51 ms
65,540 KB
testcase_09 AC 36 ms
58,136 KB
testcase_10 AC 39 ms
58,172 KB
testcase_11 AC 41 ms
60,104 KB
testcase_12 AC 47 ms
64,316 KB
testcase_13 AC 55 ms
71,436 KB
testcase_14 AC 37 ms
58,716 KB
testcase_15 AC 37 ms
59,536 KB
testcase_16 AC 38 ms
57,820 KB
testcase_17 AC 37 ms
59,928 KB
testcase_18 AC 51 ms
66,348 KB
testcase_19 AC 36 ms
57,776 KB
testcase_20 AC 38 ms
58,304 KB
testcase_21 AC 36 ms
58,252 KB
testcase_22 AC 36 ms
57,996 KB
testcase_23 AC 37 ms
59,180 KB
testcase_24 AC 36 ms
58,216 KB
testcase_25 AC 38 ms
59,704 KB
testcase_26 AC 47 ms
64,012 KB
testcase_27 AC 37 ms
58,724 KB
testcase_28 AC 36 ms
58,396 KB
testcase_29 AC 35 ms
58,072 KB
testcase_30 AC 39 ms
58,376 KB
testcase_31 AC 37 ms
59,720 KB
testcase_32 AC 43 ms
57,204 KB
testcase_33 AC 35 ms
52,972 KB
testcase_34 AC 37 ms
53,436 KB
testcase_35 AC 131 ms
75,912 KB
testcase_36 AC 332 ms
76,040 KB
testcase_37 AC 344 ms
76,164 KB
testcase_38 AC 361 ms
76,160 KB
testcase_39 AC 469 ms
76,500 KB
testcase_40 AC 470 ms
76,764 KB
testcase_41 AC 499 ms
76,140 KB
testcase_42 AC 520 ms
76,076 KB
testcase_43 AC 62 ms
76,100 KB
testcase_44 AC 136 ms
75,888 KB
testcase_45 AC 137 ms
76,364 KB
testcase_46 AC 528 ms
76,128 KB
testcase_47 AC 51 ms
57,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
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())
    a=list()
    v = 2
    while v*v<=n:
        if n%v:
            v+=1
            continue
        a.append(0)
        while n%v==0:
            a[-1]+=1
            n//=v
        v+=1
    if n>1:a.append(1)
    sa=len(a)
    a.append(0)
    def getind(ar):
        res=0
        for i in range(sa):
            res*=a[i]+1
            res+=ar[i]
        return res
    cn = getind(a)+1
    dp = [0]*cn
    ar=[0]*(sa+1)
    dp[0]=1
    while ar[-1]==0:
        ar2=list(ar)
        ind=getind(ar)
        while ar2[-1]==0:
            if ar != ar2:
                ind2=getind(ar2)
                add = dp[ind]
                for i in range(sa):
                    if ar[i]==ar2[i]:
                        add*=ar[i]+1
                dp[ind2]=(dp[ind2]+add)%998244353
            ar2[0]+=1
            for i in range(sa):
                if ar2[i]>a[i]:
                    ar2[i]=ar[i]
                    ar2[i+1]+=1
                else:break
        ar[0]+=1
        for i in range(sa):
            if ar[i]>a[i]:
                ar[i]=0
                ar[i+1]+=1
            else:break
    a.append(0)
    print(dp[-1])
        
if __name__ == "__main__":
    main()
0