結果

問題 No.2365 Present of good number
ユーザー chankei271828chankei271828
提出日時 2023-06-30 23:02:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,198 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 56,384 KB
最終ジャッジ日時 2024-07-07 10:58:40
合計ジャッジ時間 2,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,396 KB
testcase_01 AC 34 ms
53,928 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 34 ms
54,620 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 34 ms
54,600 KB
testcase_18 AC 34 ms
54,812 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 33 ms
54,740 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
53,876 KB
testcase_27 AC 33 ms
54,424 KB
testcase_28 AC 34 ms
55,196 KB
testcase_29 AC 34 ms
55,244 KB
testcase_30 AC 34 ms
54,988 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 35 ms
53,724 KB
testcase_37 AC 35 ms
54,784 KB
testcase_38 AC 33 ms
54,456 KB
testcase_39 AC 34 ms
54,340 KB
testcase_40 AC 34 ms
55,332 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-1)
    b=d_now[3]*pow(2,nokori//2,mod-1)
    #print(a,b)
    print(pow(2,a,mod-1)*pow(3,b,mod-1)%mod)
else:
    a=d_now[2]*pow(2,nokori//2,mod-1)
    b=d_now[3]*pow(2,nokori//2,mod-1)
    a,b=2*b,a
    #print(a,b)
    print(pow(2,a,mod-1)*pow(3,b,mod-1)%mod)
0