結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー 094094
提出日時 2023-05-28 14:30:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-06-08 05:37:29
合計ジャッジ時間 1,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,240 KB
testcase_01 WA -
testcase_02 AC 42 ms
58,496 KB
testcase_03 AC 43 ms
58,240 KB
testcase_04 WA -
testcase_05 AC 43 ms
57,984 KB
testcase_06 AC 42 ms
57,984 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
58,496 KB
testcase_11 AC 42 ms
58,240 KB
testcase_12 AC 43 ms
58,112 KB
testcase_13 WA -
testcase_14 AC 42 ms
58,240 KB
testcase_15 WA -
testcase_16 AC 43 ms
58,240 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 42 ms
58,240 KB
testcase_20 AC 42 ms
58,112 KB
testcase_21 AC 42 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
nfact_cnt = 0
tmp = n


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

MOD = 10**9 + 7
N = 10**5 + 1010

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

nfact = fact[n]

print(
	(nfact_cnt * pow(nfact, nfact, MOD)) % MOD
)
0