結果

問題 No.2365 Present of good number
ユーザー flygonflygon
提出日時 2023-06-30 22:37:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 56,984 KB
最終ジャッジ日時 2024-07-07 10:28:18
合計ジャッジ時間 3,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,568 KB
testcase_01 AC 40 ms
55,684 KB
testcase_02 AC 41 ms
55,224 KB
testcase_03 AC 42 ms
55,028 KB
testcase_04 AC 41 ms
56,052 KB
testcase_05 AC 40 ms
55,432 KB
testcase_06 AC 41 ms
56,620 KB
testcase_07 AC 41 ms
55,048 KB
testcase_08 AC 41 ms
55,692 KB
testcase_09 AC 41 ms
55,176 KB
testcase_10 AC 42 ms
55,128 KB
testcase_11 AC 43 ms
55,296 KB
testcase_12 AC 44 ms
55,536 KB
testcase_13 AC 41 ms
56,808 KB
testcase_14 AC 43 ms
56,984 KB
testcase_15 AC 41 ms
55,444 KB
testcase_16 AC 42 ms
55,356 KB
testcase_17 AC 42 ms
56,200 KB
testcase_18 AC 42 ms
55,196 KB
testcase_19 AC 41 ms
55,816 KB
testcase_20 AC 43 ms
54,708 KB
testcase_21 AC 42 ms
55,304 KB
testcase_22 AC 41 ms
55,116 KB
testcase_23 AC 39 ms
55,984 KB
testcase_24 AC 39 ms
55,040 KB
testcase_25 AC 41 ms
55,300 KB
testcase_26 AC 41 ms
54,380 KB
testcase_27 AC 41 ms
55,228 KB
testcase_28 AC 42 ms
55,720 KB
testcase_29 AC 41 ms
55,440 KB
testcase_30 AC 43 ms
55,572 KB
testcase_31 AC 41 ms
55,108 KB
testcase_32 AC 42 ms
56,628 KB
testcase_33 AC 40 ms
54,892 KB
testcase_34 AC 41 ms
55,684 KB
testcase_35 AC 42 ms
55,276 KB
testcase_36 AC 46 ms
54,780 KB
testcase_37 AC 42 ms
55,172 KB
testcase_38 AC 42 ms
54,496 KB
testcase_39 AC 41 ms
54,376 KB
testcase_40 AC 41 ms
55,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

mod = 10**9+7

def fact(n):
    l = []
    tmp = n
    for i in range(2,int(pow(n,0.5))+1):
        if tmp % i == 0:
            cnt = 0
            while tmp % i == 0:
                cnt += 1
                tmp //= i
            l.append([i,cnt])
    if tmp != 1:
        l.append([tmp,1])
    return l

def f(p, cnt):
    if cnt == 0:
        return p
    pf = fact(p)
    ans = 1
    for i in pf:
        if i[0] != 2:
            ans *= pow(f(i[0]+1,cnt-1), i[1], mod)
        else:
            if cnt % 2 == 0:
                ans *= pow(pow(2, pow(2,cnt//2, mod-1), mod), i[1], mod)
            else:
                ans *= pow(pow(3, pow(2,cnt//2, mod-1), mod), i[1],mod)
        ans %= mod
    return ans

def gu(p, cnt):
    for i in range(cnt):
        new = 1
        pf = fact(p)
        for i in pf:
            new*= pow(i[0]+1 , i[1])
        p = new
    return p%mod
        

n,k = map(int,input().split())
print(f(n,k)%mod)


0