結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー 094094
提出日時 2023-05-28 16:48:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,012 KB
最終ジャッジ日時 2024-06-08 09:46:59
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
76,264 KB
testcase_01 AC 245 ms
79,012 KB
testcase_02 AC 84 ms
76,384 KB
testcase_03 AC 183 ms
77,424 KB
testcase_04 AC 130 ms
76,584 KB
testcase_05 AC 111 ms
76,264 KB
testcase_06 AC 162 ms
77,184 KB
testcase_07 AC 239 ms
78,464 KB
testcase_08 AC 242 ms
78,848 KB
testcase_09 AC 227 ms
78,848 KB
testcase_10 AC 62 ms
76,488 KB
testcase_11 AC 74 ms
76,032 KB
testcase_12 AC 56 ms
76,016 KB
testcase_13 AC 121 ms
76,932 KB
testcase_14 AC 204 ms
77,568 KB
testcase_15 AC 65 ms
76,020 KB
testcase_16 AC 46 ms
64,896 KB
testcase_17 AC 211 ms
77,696 KB
testcase_18 AC 93 ms
76,288 KB
testcase_19 AC 64 ms
76,032 KB
testcase_20 AC 42 ms
58,624 KB
testcase_21 AC 43 ms
58,752 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