結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
10,752 KB
testcase_01 AC 264 ms
10,752 KB
testcase_02 AC 193 ms
10,752 KB
testcase_03 AC 147 ms
10,752 KB
testcase_04 AC 165 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 203 ms
10,752 KB
testcase_07 AC 171 ms
10,752 KB
testcase_08 AC 174 ms
10,752 KB
testcase_09 AC 172 ms
10,880 KB
testcase_10 AC 189 ms
10,752 KB
testcase_11 AC 199 ms
10,752 KB
testcase_12 AC 184 ms
10,752 KB
testcase_13 AC 190 ms
10,752 KB
testcase_14 AC 200 ms
10,880 KB
testcase_15 AC 204 ms
10,752 KB
testcase_16 AC 208 ms
10,752 KB
testcase_17 AC 217 ms
10,752 KB
testcase_18 AC 208 ms
10,752 KB
testcase_19 AC 203 ms
10,752 KB
testcase_20 AC 195 ms
10,880 KB
testcase_21 AC 191 ms
10,752 KB
testcase_22 AC 191 ms
10,752 KB
testcase_23 AC 201 ms
10,880 KB
testcase_24 AC 188 ms
10,752 KB
testcase_25 AC 191 ms
10,752 KB
testcase_26 AC 193 ms
10,752 KB
testcase_27 AC 186 ms
10,752 KB
testcase_28 AC 209 ms
10,752 KB
testcase_29 AC 206 ms
10,752 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 207 ms
10,752 KB
testcase_36 AC 187 ms
10,752 KB
testcase_37 AC 189 ms
10,752 KB
testcase_38 AC 192 ms
10,752 KB
testcase_39 AC 200 ms
10,880 KB
testcase_40 AC 292 ms
10,752 KB
testcase_41 AC 747 ms
10,752 KB
testcase_42 AC 1,881 ms
11,008 KB
testcase_43 AC 877 ms
11,008 KB
testcase_44 AC 395 ms
10,752 KB
testcase_45 AC 178 ms
10,752 KB
testcase_46 AC 150 ms
10,752 KB
testcase_47 AC 172 ms
10,752 KB
testcase_48 AC 172 ms
10,752 KB
testcase_49 AC 172 ms
10,752 KB
testcase_50 AC 182 ms
10,752 KB
testcase_51 AC 191 ms
10,752 KB
testcase_52 AC 197 ms
10,752 KB
testcase_53 AC 185 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

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

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