結果

問題 No.2365 Present of good number
ユーザー chankei271828chankei271828
提出日時 2023-06-30 22:54:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,182 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-07 10:47:35
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 47 ms
53,888 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 47 ms
53,632 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 46 ms
53,632 KB
testcase_18 AC 46 ms
54,016 KB
testcase_19 AC 47 ms
53,632 KB
testcase_20 AC 46 ms
53,760 KB
testcase_21 AC 46 ms
54,144 KB
testcase_22 AC 47 ms
53,760 KB
testcase_23 AC 47 ms
53,888 KB
testcase_24 AC 47 ms
53,632 KB
testcase_25 AC 46 ms
54,016 KB
testcase_26 AC 46 ms
54,144 KB
testcase_27 AC 47 ms
53,504 KB
testcase_28 AC 46 ms
53,888 KB
testcase_29 AC 46 ms
53,888 KB
testcase_30 AC 46 ms
54,016 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 47 ms
53,504 KB
testcase_37 AC 47 ms
53,760 KB
testcase_38 AC 46 ms
53,888 KB
testcase_39 AC 47 ms
54,016 KB
testcase_40 AC 47 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#nを素因数分解して、辞書に割れる回数も合わせて返す。
#O(sqrt(N))
import math
from collections import defaultdict
def prime_factorization(n):
    ima=n
    d={}
    for i in range(2,math.ceil(math.sqrt(n))+2):
        if i<=ima and ima%i==0:
            while ima%i==0:
                if i not in d:
                    d[i]=1
                else:
                    d[i]+=1
                ima//=i
    if ima==1:
        return d
    else:
        d[ima]=1
        return d

N,K=map(int,input().split())
mod=10**9+7
ans=1
d_now=prime_factorization(N)
for _ in range(min(K,20)):
    d_tmp=defaultdict(int)
    for p in d_now:
        d_p=prime_factorization(p+1)
        for v in d_p:
            d_tmp[v]+=d_now[p]*d_p[v]
    d_now=d_tmp
nokori=K-20
if nokori<=0:
    ans=1
    for p in d_now:
        ans*=pow(p,d_now[p],mod)
        ans%=mod
    print(ans)
elif nokori%2==0:
    a=d_now[2]*pow(2,nokori//2,mod)
    b=d_now[3]*pow(2,nokori//2,mod)
    #print(a,b)
    print(pow(2,a,mod)*pow(3,b,mod)%mod)
else:
    a=d_now[2]*pow(2,nokori//2,mod)
    b=d_now[3]*pow(2,nokori//2,mod)
    a,b=2*b,a
    #print(a,b)
    print(pow(2,a,mod)*pow(3,b,mod)%mod)
0