結果

問題 No.2798 Multiple Chain
ユーザー titiatitia
提出日時 2024-08-12 03:35:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 711 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 76,772 KB
最終ジャッジ日時 2024-08-12 03:35:50
合計ジャッジ時間 12,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
57,728 KB
testcase_01 AC 163 ms
57,728 KB
testcase_02 AC 177 ms
60,032 KB
testcase_03 AC 163 ms
57,856 KB
testcase_04 AC 156 ms
57,856 KB
testcase_05 WA -
testcase_06 AC 179 ms
62,720 KB
testcase_07 AC 164 ms
58,368 KB
testcase_08 AC 153 ms
57,984 KB
testcase_09 AC 162 ms
57,984 KB
testcase_10 AC 171 ms
59,520 KB
testcase_11 AC 168 ms
59,648 KB
testcase_12 AC 157 ms
58,368 KB
testcase_13 AC 172 ms
62,592 KB
testcase_14 AC 193 ms
68,864 KB
testcase_15 AC 185 ms
60,416 KB
testcase_16 AC 175 ms
60,800 KB
testcase_17 AC 176 ms
61,312 KB
testcase_18 AC 175 ms
60,800 KB
testcase_19 AC 176 ms
61,056 KB
testcase_20 AC 166 ms
57,728 KB
testcase_21 AC 168 ms
57,728 KB
testcase_22 AC 167 ms
57,984 KB
testcase_23 AC 167 ms
57,472 KB
testcase_24 AC 163 ms
57,984 KB
testcase_25 AC 174 ms
59,392 KB
testcase_26 AC 172 ms
58,240 KB
testcase_27 AC 169 ms
59,648 KB
testcase_28 AC 166 ms
57,728 KB
testcase_29 AC 169 ms
57,984 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 171 ms
58,368 KB
testcase_36 AC 165 ms
58,240 KB
testcase_37 AC 171 ms
60,288 KB
testcase_38 AC 165 ms
58,624 KB
testcase_39 AC 163 ms
58,368 KB
testcase_40 AC 207 ms
71,040 KB
testcase_41 AC 293 ms
76,672 KB
testcase_42 AC 469 ms
76,772 KB
testcase_43 AC 315 ms
76,508 KB
testcase_44 AC 227 ms
74,240 KB
testcase_45 AC 154 ms
57,984 KB
testcase_46 AC 153 ms
58,240 KB
testcase_47 AC 159 ms
58,112 KB
testcase_48 AC 155 ms
58,112 KB
testcase_49 AC 157 ms
57,600 KB
testcase_50 AC 154 ms
57,984 KB
testcase_51 AC 168 ms
57,856 KB
testcase_52 AC 161 ms
58,368 KB
testcase_53 AC 167 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

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

for i in range(2,10**7+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