結果

問題 No.2318 Phys Bone Maker
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-02-21 22:05:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,057 ms / 3,000 ms
コード長 1,373 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 81,784 KB
最終ジャッジ日時 2024-09-18 12:54:49
合計ジャッジ時間 17,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,136 KB
testcase_01 AC 33 ms
53,256 KB
testcase_02 AC 2,057 ms
81,784 KB
testcase_03 AC 45 ms
61,776 KB
testcase_04 AC 38 ms
59,236 KB
testcase_05 AC 38 ms
58,104 KB
testcase_06 AC 37 ms
58,440 KB
testcase_07 AC 48 ms
65,968 KB
testcase_08 AC 50 ms
65,616 KB
testcase_09 AC 38 ms
59,912 KB
testcase_10 AC 38 ms
59,644 KB
testcase_11 AC 42 ms
61,096 KB
testcase_12 AC 49 ms
66,228 KB
testcase_13 AC 57 ms
73,636 KB
testcase_14 AC 39 ms
58,308 KB
testcase_15 AC 41 ms
59,648 KB
testcase_16 AC 40 ms
58,652 KB
testcase_17 AC 40 ms
61,208 KB
testcase_18 AC 50 ms
65,756 KB
testcase_19 AC 39 ms
58,052 KB
testcase_20 AC 39 ms
57,540 KB
testcase_21 AC 38 ms
57,728 KB
testcase_22 AC 41 ms
60,816 KB
testcase_23 AC 41 ms
57,788 KB
testcase_24 AC 39 ms
58,184 KB
testcase_25 AC 41 ms
58,384 KB
testcase_26 AC 50 ms
66,456 KB
testcase_27 AC 40 ms
60,344 KB
testcase_28 AC 37 ms
58,112 KB
testcase_29 AC 41 ms
58,168 KB
testcase_30 AC 42 ms
59,244 KB
testcase_31 AC 41 ms
60,492 KB
testcase_32 AC 45 ms
58,508 KB
testcase_33 AC 36 ms
53,088 KB
testcase_34 AC 41 ms
60,996 KB
testcase_35 AC 288 ms
76,620 KB
testcase_36 AC 995 ms
78,908 KB
testcase_37 AC 996 ms
79,080 KB
testcase_38 AC 1,099 ms
79,280 KB
testcase_39 AC 1,477 ms
80,104 KB
testcase_40 AC 1,492 ms
80,176 KB
testcase_41 AC 1,603 ms
80,796 KB
testcase_42 AC 1,713 ms
81,248 KB
testcase_43 AC 64 ms
76,156 KB
testcase_44 AC 356 ms
77,092 KB
testcase_45 AC 326 ms
76,892 KB
testcase_46 AC 1,794 ms
81,148 KB
testcase_47 AC 50 ms
58,048 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)

    dp = {}        
    ar=[0]*(sa+1)
    dp[tuple(ar)]=1
    while ar[-1]==0:
        ar2=list(ar)
        while ar2[-1]==0:
            if ar != ar2:
                add = dp[tuple(ar)]
                for i in range(sa):
                    if ar[i]==ar2[i]:
                        add*=ar[i]+1
                dp[tuple(ar2)]=(dp.get(tuple(ar2),0)+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[tuple(a)])
        
if __name__ == "__main__":
    main()
0