結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 804 ms
76,244 KB
testcase_03 AC 51 ms
60,672 KB
testcase_04 AC 43 ms
57,728 KB
testcase_05 AC 44 ms
57,856 KB
testcase_06 AC 44 ms
58,112 KB
testcase_07 AC 59 ms
65,664 KB
testcase_08 AC 64 ms
68,352 KB
testcase_09 AC 43 ms
57,472 KB
testcase_10 AC 47 ms
57,728 KB
testcase_11 AC 53 ms
61,312 KB
testcase_12 AC 64 ms
66,816 KB
testcase_13 AC 67 ms
73,856 KB
testcase_14 AC 45 ms
58,368 KB
testcase_15 AC 44 ms
57,984 KB
testcase_16 AC 45 ms
57,472 KB
testcase_17 AC 49 ms
59,776 KB
testcase_18 AC 63 ms
69,504 KB
testcase_19 AC 44 ms
57,728 KB
testcase_20 AC 44 ms
57,216 KB
testcase_21 AC 44 ms
57,216 KB
testcase_22 AC 48 ms
59,392 KB
testcase_23 AC 47 ms
57,984 KB
testcase_24 AC 45 ms
57,472 KB
testcase_25 AC 48 ms
57,728 KB
testcase_26 AC 64 ms
66,816 KB
testcase_27 AC 45 ms
58,112 KB
testcase_28 AC 44 ms
57,728 KB
testcase_29 AC 43 ms
57,216 KB
testcase_30 AC 45 ms
58,112 KB
testcase_31 AC 48 ms
59,648 KB
testcase_32 AC 49 ms
57,984 KB
testcase_33 AC 39 ms
52,224 KB
testcase_34 AC 46 ms
58,496 KB
testcase_35 AC 159 ms
75,776 KB
testcase_36 AC 484 ms
76,672 KB
testcase_37 AC 444 ms
76,672 KB
testcase_38 AC 445 ms
76,416 KB
testcase_39 AC 699 ms
76,544 KB
testcase_40 AC 610 ms
76,288 KB
testcase_41 AC 772 ms
76,416 KB
testcase_42 AC 696 ms
76,672 KB
testcase_43 AC 75 ms
76,032 KB
testcase_44 AC 222 ms
76,800 KB
testcase_45 AC 210 ms
76,800 KB
testcase_46 AC 710 ms
76,288 KB
testcase_47 AC 57 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
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())
    c=dict()
    while(n > 1):
        find = False
        v = 2
        while v*v<=n:
            if n%v==0:
                find=True
                c[v]=c.get(v,0)+1
                n//=v
                break
            v+=1
        if find==False:
            c[n]=c.get(n,0)+1
            break
    a=list(c.values())
    sa=len(a)

    def getind(b):
        res=0
        for i in range(sa):
            res*=a[i]+1
            res+=b[i]
        return res
    def revind(v):
        res=[0]*sa
        vv = v
        for i in range(sa-1,-1,-1):
            res[i]=vv%(a[i]+1)
            vv=vv//(a[i]+1)
        return res

    bb = getind(a)+1
    dp = [0]*(bb)
    dp[0]=1
    for b in range(bb-1):
        ar = revind(b)
        stk=[ar[0]]
        first = True
        while True:
            if stk[-1] > a[len(stk)-1]:
                stk.pop(-1)
                if len(stk) == 0:break
                stk[-1]+=1
                continue
            if len(stk)<sa:
                stk.append(ar[len(stk)])
                continue
            if first:
                first=False
                stk[-1]+=1
                continue
            add = dp[b]
            
            for i in range(sa):
                if ar[i]==stk[i]:
                    add*=ar[i]+1
            dp[getind(stk)]+=add
            dp[getind(stk)]%=998244353
            stk[-1]+=1

    print(dp[-1])
        
if __name__ == "__main__":
    main()
0