結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー 094094
提出日時 2023-05-28 16:48:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-12-27 11:57:23
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
75,904 KB
testcase_01 AC 238 ms
78,592 KB
testcase_02 AC 89 ms
76,288 KB
testcase_03 AC 181 ms
77,056 KB
testcase_04 AC 129 ms
76,288 KB
testcase_05 AC 109 ms
76,416 KB
testcase_06 AC 163 ms
77,184 KB
testcase_07 AC 234 ms
78,208 KB
testcase_08 AC 241 ms
78,592 KB
testcase_09 AC 238 ms
78,508 KB
testcase_10 AC 62 ms
76,160 KB
testcase_11 AC 75 ms
76,160 KB
testcase_12 AC 56 ms
75,648 KB
testcase_13 AC 123 ms
76,668 KB
testcase_14 AC 202 ms
77,568 KB
testcase_15 AC 66 ms
75,776 KB
testcase_16 AC 46 ms
64,512 KB
testcase_17 AC 214 ms
77,184 KB
testcase_18 AC 99 ms
76,288 KB
testcase_19 AC 66 ms
75,904 KB
testcase_20 AC 44 ms
58,112 KB
testcase_21 AC 45 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
MOD = 10**9 + 7

n, p = map(int, input().split())

nfact_cnt = 0
tmp = n
while tmp > 0:
	nfact_cnt += tmp // p
	tmp = tmp // p

fact = [1] * 101010
r = 1
for i in range(1, 101010):
    fact[i] = r = r * i % MOD


fc = math.factorial(n)
print(nfact_cnt * pow(fact[n], fc, MOD) % MOD)
0