結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー dangodango
提出日時 2023-06-13 21:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 59,540 KB
最終ジャッジ日時 2024-06-22 07:43:59
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,068 KB
testcase_01 AC 44 ms
58,044 KB
testcase_02 AC 41 ms
57,728 KB
testcase_03 AC 41 ms
57,724 KB
testcase_04 AC 42 ms
59,248 KB
testcase_05 AC 42 ms
58,784 KB
testcase_06 AC 43 ms
59,540 KB
testcase_07 AC 44 ms
58,440 KB
testcase_08 AC 43 ms
58,536 KB
testcase_09 AC 42 ms
58,636 KB
testcase_10 AC 42 ms
59,516 KB
testcase_11 AC 42 ms
58,404 KB
testcase_12 AC 42 ms
57,928 KB
testcase_13 AC 43 ms
59,516 KB
testcase_14 AC 43 ms
58,388 KB
testcase_15 AC 43 ms
58,244 KB
testcase_16 AC 43 ms
58,328 KB
testcase_17 AC 42 ms
57,972 KB
testcase_18 AC 43 ms
58,568 KB
testcase_19 AC 43 ms
58,508 KB
testcase_20 AC 38 ms
53,040 KB
testcase_21 AC 39 ms
52,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = 10 ** 9 + 7
N, P = map(int,input().split())
A = 0
B = C = 1
for i in range(1, N + 1):
	B, C = B * i % Q, C * i % (Q - 1)
while N:
	N //= P
	A += N
print(A * pow(B, C, Q) % Q)
0