結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー 094094
提出日時 2023-05-28 15:14:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-12-27 05:28:52
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
76,160 KB
testcase_01 AC 238 ms
78,720 KB
testcase_02 AC 85 ms
76,160 KB
testcase_03 AC 179 ms
77,268 KB
testcase_04 AC 128 ms
76,800 KB
testcase_05 AC 108 ms
76,416 KB
testcase_06 AC 161 ms
77,320 KB
testcase_07 AC 230 ms
78,516 KB
testcase_08 AC 232 ms
79,104 KB
testcase_09 AC 232 ms
78,464 KB
testcase_10 AC 64 ms
76,316 KB
testcase_11 AC 75 ms
76,160 KB
testcase_12 AC 58 ms
76,160 KB
testcase_13 AC 122 ms
76,544 KB
testcase_14 AC 200 ms
77,952 KB
testcase_15 AC 66 ms
76,056 KB
testcase_16 AC 47 ms
64,512 KB
testcase_17 AC 204 ms
77,824 KB
testcase_18 AC 98 ms
76,544 KB
testcase_19 AC 66 ms
76,256 KB
testcase_20 AC 42 ms
58,752 KB
testcase_21 AC 42 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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))
#print(nfact_cnt * pow(nfact, nfact, MOD) % MOD)

fc = math.factorial(n)
#print("===")

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