結果

問題 No.2365 Present of good number
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-30 21:56:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 1,526 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-07-07 09:38:21
合計ジャッジ時間 3,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 48 ms
57,216 KB
testcase_03 AC 45 ms
57,344 KB
testcase_04 AC 46 ms
57,600 KB
testcase_05 AC 47 ms
56,960 KB
testcase_06 AC 45 ms
57,216 KB
testcase_07 AC 45 ms
57,216 KB
testcase_08 AC 45 ms
57,344 KB
testcase_09 AC 44 ms
57,344 KB
testcase_10 AC 45 ms
57,728 KB
testcase_11 AC 44 ms
56,960 KB
testcase_12 AC 45 ms
57,216 KB
testcase_13 AC 46 ms
57,600 KB
testcase_14 AC 44 ms
57,088 KB
testcase_15 AC 43 ms
57,216 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 41 ms
51,584 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 41 ms
52,480 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 44 ms
56,832 KB
testcase_22 AC 44 ms
57,216 KB
testcase_23 AC 45 ms
57,216 KB
testcase_24 AC 44 ms
57,472 KB
testcase_25 AC 45 ms
57,472 KB
testcase_26 AC 44 ms
57,600 KB
testcase_27 AC 44 ms
57,216 KB
testcase_28 AC 43 ms
57,492 KB
testcase_29 AC 44 ms
57,472 KB
testcase_30 AC 44 ms
57,600 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 40 ms
51,584 KB
testcase_33 AC 39 ms
52,480 KB
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 41 ms
52,352 KB
testcase_36 AC 43 ms
57,216 KB
testcase_37 AC 45 ms
57,088 KB
testcase_38 AC 45 ms
57,216 KB
testcase_39 AC 45 ms
57,216 KB
testcase_40 AC 45 ms
57,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

2冪になると、あとは
2^k -> 3^k -> 2^(2k)
みたいになる

他にループするのあるのかな…
無いと決め打って書いてみようかな

f(p1*p2) = f(p1) * f(p2)

"""

import sys
from sys import stdin

mod = 10**9+7

dic = {}
def f(N,k):

    p = []
    a = []

    if k == 0:
        return N
    if (N,k) in dic:
        return dic[(N,k)]

    Nori = N

    for i in range(2,N+1):
        if N % i == 0:
            p.append(i)
            a.append(0)
            while N % i == 0:
                a[-1] += 1
                N //= i

    ans = 1

    #print (p,a)
    
    for np,na in zip(p,a):

        # 2冪の処理
        if np == 2:
            if k % 2 == 0:
                x = (k//2)
                now = pow(2 , ( na * pow(2,x,mod-1) ) % (mod-1) , mod )
            else:
                x = (k//2)
                now = pow(3 , ( na * pow(2,x,mod-1) ) % (mod-1) , mod )
            ans = ans * now % mod

        # 3冪の処理
        if np == 3:
            if k % 2 == 0:
                x = (k//2)
                now = pow(3 , ( na * pow(2,x,mod-1) ) % (mod-1) , mod )
            else:
                x = (k//2) + 1
                now = pow(2 , ( na * pow(2,x,mod-1) ) % (mod-1) , mod )
            ans = ans * now % mod

        # そうでない場合、愚直に処理
        if np > 3:
            now = f( (np+1) ** na , k-1 )
            ans = ans * now % mod

    dic[(Nori,k)] = ans
    return ans
    

N,K = map(int,stdin.readline().split())

print (f(N,K))
0