結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー 094094
提出日時 2023-05-28 16:50:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,844 KB
最終ジャッジ日時 2024-06-08 09:49:33
合計ジャッジ時間 3,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
74,976 KB
testcase_01 AC 241 ms
77,844 KB
testcase_02 AC 82 ms
74,752 KB
testcase_03 AC 178 ms
76,380 KB
testcase_04 AC 130 ms
75,392 KB
testcase_05 AC 107 ms
74,880 KB
testcase_06 AC 158 ms
76,160 KB
testcase_07 AC 230 ms
77,132 KB
testcase_08 AC 232 ms
77,184 KB
testcase_09 AC 229 ms
77,056 KB
testcase_10 AC 59 ms
74,368 KB
testcase_11 AC 72 ms
74,624 KB
testcase_12 AC 59 ms
74,692 KB
testcase_13 AC 120 ms
75,008 KB
testcase_14 AC 198 ms
76,744 KB
testcase_15 AC 64 ms
75,132 KB
testcase_16 AC 44 ms
62,976 KB
testcase_17 AC 206 ms
76,740 KB
testcase_18 AC 93 ms
75,264 KB
testcase_19 AC 64 ms
74,624 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 37 ms
51,456 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

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