結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー AyunaAyuna
提出日時 2023-05-28 16:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-12-27 11:55:42
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,800 KB
testcase_01 AC 170 ms
74,368 KB
testcase_02 AC 80 ms
63,360 KB
testcase_03 AC 144 ms
71,168 KB
testcase_04 AC 112 ms
66,816 KB
testcase_05 AC 102 ms
66,304 KB
testcase_06 AC 133 ms
69,760 KB
testcase_07 AC 168 ms
73,984 KB
testcase_08 AC 170 ms
74,112 KB
testcase_09 AC 169 ms
74,624 KB
testcase_10 AC 61 ms
61,184 KB
testcase_11 AC 70 ms
62,336 KB
testcase_12 AC 53 ms
60,544 KB
testcase_13 AC 104 ms
66,688 KB
testcase_14 AC 152 ms
72,704 KB
testcase_15 AC 62 ms
61,568 KB
testcase_16 AC 49 ms
59,904 KB
testcase_17 AC 152 ms
72,704 KB
testcase_18 AC 88 ms
64,640 KB
testcase_19 AC 63 ms
61,568 KB
testcase_20 AC 40 ms
51,584 KB
testcase_21 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
pcnt = 0
pnow = p
while pnow <= n:
    pcnt += n // pnow
    pnow *= p
mod = 10 ** 9 + 7

def bikkuri_pre(n):
    global bikkuri, irukkib
    bikkuri = [1]
    irukkib = [1]
    for i in range(1, n + 1):
        bikkuri.append((bikkuri[-1] * i) % mod)
    for i in range(1, n + 1):
        irukkib.append(pow(bikkuri[i], mod - 2, mod))

bikkuri_pre(n)
a = bikkuri[n]
for i in range(1, n + 1):
    a = pow(a, i, mod)
print(pcnt * a % mod)
0