結果

問題 No.2798 Multiple Chain
ユーザー titiatitia
提出日時 2024-08-12 03:53:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 765 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-08-12 03:53:24
合計ジャッジ時間 15,147 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
10,880 KB
testcase_01 AC 190 ms
10,752 KB
testcase_02 AC 197 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 150 ms
10,752 KB
testcase_05 AC 571 ms
10,880 KB
testcase_06 AC 189 ms
10,752 KB
testcase_07 AC 167 ms
10,752 KB
testcase_08 AC 172 ms
10,752 KB
testcase_09 AC 161 ms
10,752 KB
testcase_10 AC 204 ms
10,752 KB
testcase_11 AC 181 ms
11,008 KB
testcase_12 AC 162 ms
10,752 KB
testcase_13 AC 186 ms
10,752 KB
testcase_14 AC 188 ms
10,752 KB
testcase_15 AC 202 ms
10,880 KB
testcase_16 AC 222 ms
10,752 KB
testcase_17 AC 203 ms
10,752 KB
testcase_18 AC 193 ms
10,880 KB
testcase_19 AC 191 ms
10,752 KB
testcase_20 AC 189 ms
10,752 KB
testcase_21 AC 181 ms
10,752 KB
testcase_22 AC 187 ms
10,880 KB
testcase_23 AC 186 ms
10,752 KB
testcase_24 AC 186 ms
10,752 KB
testcase_25 AC 193 ms
10,752 KB
testcase_26 AC 185 ms
10,752 KB
testcase_27 AC 183 ms
10,752 KB
testcase_28 AC 195 ms
10,752 KB
testcase_29 AC 187 ms
10,752 KB
testcase_30 AC 186 ms
10,752 KB
testcase_31 AC 179 ms
10,752 KB
testcase_32 AC 180 ms
10,752 KB
testcase_33 AC 193 ms
10,752 KB
testcase_34 AC 183 ms
10,752 KB
testcase_35 AC 179 ms
10,752 KB
testcase_36 AC 183 ms
10,752 KB
testcase_37 AC 199 ms
10,752 KB
testcase_38 AC 186 ms
10,752 KB
testcase_39 AC 175 ms
10,752 KB
testcase_40 AC 264 ms
10,624 KB
testcase_41 AC 710 ms
10,752 KB
testcase_42 AC 1,831 ms
10,880 KB
testcase_43 AC 837 ms
11,008 KB
testcase_44 AC 353 ms
10,752 KB
testcase_45 AC 163 ms
10,752 KB
testcase_46 AC 163 ms
10,752 KB
testcase_47 AC 167 ms
10,752 KB
testcase_48 AC 163 ms
10,752 KB
testcase_49 AC 166 ms
10,752 KB
testcase_50 AC 182 ms
10,880 KB
testcase_51 AC 186 ms
10,752 KB
testcase_52 AC 189 ms
10,752 KB
testcase_53 AC 192 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

D=[[] for i in range(65)]

r=round(N**(1/2))

if N%(r*r)==0:
    D[2].append(r)

for i in range(2,10**6+5):
    if N%i==0:
        count=0
        x=N
        while x%i==0:
            count+=1
            x//=i

        if count>=2:
            for j in range(2,count+1):
                D[j].append(i)

        rest=N//i

        r=round(rest**(1/2))

        if r!=1 and N%(r*r)==0:
            D[2].append(r)

for i in range(65):
    D[i]=list(set(D[i]))

ANS=[0]
def dfs(now,k):
    if k==1:
        ANS[0]+=1
        return

    for i in range(len(D[k])):
        if now%(D[k][i]**k)==0:
            dfs(now//(D[k][i]**k),k-1)

    dfs(now,k-1)

dfs(N,64)

print(ANS[0])
    
    
    
    
            
0