結果

問題 No.2798 Multiple Chain
ユーザー titiatitia
提出日時 2024-08-12 03:53:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,856 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-08-12 03:54:13
合計ジャッジ時間 16,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
11,008 KB
testcase_01 AC 201 ms
10,880 KB
testcase_02 AC 242 ms
11,008 KB
testcase_03 AC 156 ms
10,880 KB
testcase_04 AC 145 ms
10,880 KB
testcase_05 AC 587 ms
10,880 KB
testcase_06 AC 191 ms
10,880 KB
testcase_07 AC 177 ms
10,880 KB
testcase_08 AC 172 ms
10,880 KB
testcase_09 AC 168 ms
10,880 KB
testcase_10 AC 194 ms
10,880 KB
testcase_11 AC 196 ms
10,880 KB
testcase_12 AC 166 ms
10,880 KB
testcase_13 AC 199 ms
10,880 KB
testcase_14 AC 195 ms
11,008 KB
testcase_15 AC 205 ms
10,880 KB
testcase_16 AC 204 ms
11,008 KB
testcase_17 AC 213 ms
11,008 KB
testcase_18 AC 212 ms
10,880 KB
testcase_19 AC 219 ms
10,880 KB
testcase_20 AC 188 ms
10,880 KB
testcase_21 AC 191 ms
10,880 KB
testcase_22 AC 186 ms
11,008 KB
testcase_23 AC 188 ms
10,880 KB
testcase_24 AC 198 ms
10,880 KB
testcase_25 AC 199 ms
10,880 KB
testcase_26 AC 187 ms
10,880 KB
testcase_27 AC 188 ms
11,008 KB
testcase_28 AC 193 ms
10,880 KB
testcase_29 AC 190 ms
10,880 KB
testcase_30 AC 183 ms
10,880 KB
testcase_31 AC 208 ms
10,880 KB
testcase_32 AC 197 ms
10,880 KB
testcase_33 AC 199 ms
10,880 KB
testcase_34 AC 199 ms
11,008 KB
testcase_35 AC 192 ms
10,880 KB
testcase_36 AC 194 ms
10,880 KB
testcase_37 AC 197 ms
10,880 KB
testcase_38 AC 187 ms
11,008 KB
testcase_39 AC 185 ms
10,880 KB
testcase_40 AC 278 ms
10,880 KB
testcase_41 AC 757 ms
10,880 KB
testcase_42 AC 1,856 ms
11,136 KB
testcase_43 AC 903 ms
10,880 KB
testcase_44 AC 345 ms
11,008 KB
testcase_45 AC 171 ms
11,008 KB
testcase_46 AC 162 ms
11,008 KB
testcase_47 AC 179 ms
10,880 KB
testcase_48 AC 171 ms
10,880 KB
testcase_49 AC 169 ms
10,880 KB
testcase_50 AC 165 ms
11,008 KB
testcase_51 AC 189 ms
11,008 KB
testcase_52 AC 201 ms
10,880 KB
testcase_53 AC 194 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

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

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

if r!=1 and 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