結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,340 KB
testcase_01 AC 38 ms
52,668 KB
testcase_02 AC 1,093 ms
76,200 KB
testcase_03 AC 49 ms
62,280 KB
testcase_04 AC 44 ms
58,596 KB
testcase_05 AC 42 ms
57,628 KB
testcase_06 AC 42 ms
58,700 KB
testcase_07 AC 59 ms
67,232 KB
testcase_08 AC 59 ms
69,092 KB
testcase_09 AC 43 ms
57,768 KB
testcase_10 AC 43 ms
59,640 KB
testcase_11 AC 51 ms
62,068 KB
testcase_12 AC 62 ms
67,388 KB
testcase_13 AC 67 ms
75,960 KB
testcase_14 AC 43 ms
58,236 KB
testcase_15 AC 43 ms
58,348 KB
testcase_16 AC 45 ms
58,328 KB
testcase_17 AC 48 ms
62,372 KB
testcase_18 AC 61 ms
67,820 KB
testcase_19 AC 42 ms
58,592 KB
testcase_20 AC 43 ms
57,856 KB
testcase_21 AC 42 ms
57,956 KB
testcase_22 AC 50 ms
60,596 KB
testcase_23 AC 45 ms
58,188 KB
testcase_24 AC 43 ms
57,940 KB
testcase_25 AC 48 ms
58,264 KB
testcase_26 AC 61 ms
68,068 KB
testcase_27 AC 46 ms
60,008 KB
testcase_28 AC 43 ms
58,388 KB
testcase_29 AC 41 ms
57,764 KB
testcase_30 AC 45 ms
59,072 KB
testcase_31 AC 47 ms
61,040 KB
testcase_32 AC 49 ms
57,972 KB
testcase_33 AC 39 ms
52,528 KB
testcase_34 AC 46 ms
61,320 KB
testcase_35 AC 193 ms
76,024 KB
testcase_36 AC 535 ms
76,184 KB
testcase_37 AC 570 ms
75,932 KB
testcase_38 AC 594 ms
75,924 KB
testcase_39 AC 778 ms
76,016 KB
testcase_40 AC 808 ms
76,104 KB
testcase_41 AC 879 ms
76,108 KB
testcase_42 AC 930 ms
75,988 KB
testcase_43 AC 71 ms
75,844 KB
testcase_44 AC 257 ms
75,760 KB
testcase_45 AC 265 ms
75,508 KB
testcase_46 AC 982 ms
75,876 KB
testcase_47 AC 58 ms
58,548 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())
    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)
    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)
        while ar2[-1]==0:
            if ar != ar2:
                add = dp[getind(ar)]
                for i in range(sa):
                    if ar[i]==ar2[i]:
                        add*=ar[i]+1
                dp[getind(ar2)]=(dp[getind(ar2)]+add)%998244353
            ar2[0]+=1
            for i in range(sa):
                if ar2[i]>a[i]:
                    ar2[i]=ar[i]
                    ar2[i+1]+=1
        ar[0]+=1
        for i in range(sa):
            if ar[i]>a[i]:
                ar[i]=0
                ar[i+1]+=1
    a.append(0)
    print(dp[-1])
        
if __name__ == "__main__":
    main()
0