結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
76,032 KB
testcase_01 AC 213 ms
79,104 KB
testcase_02 AC 82 ms
76,456 KB
testcase_03 AC 167 ms
77,184 KB
testcase_04 AC 114 ms
76,888 KB
testcase_05 AC 97 ms
76,672 KB
testcase_06 AC 142 ms
77,056 KB
testcase_07 AC 216 ms
78,340 KB
testcase_08 AC 218 ms
78,848 KB
testcase_09 AC 206 ms
78,704 KB
testcase_10 AC 58 ms
75,648 KB
testcase_11 AC 66 ms
76,416 KB
testcase_12 AC 53 ms
75,520 KB
testcase_13 AC 110 ms
76,800 KB
testcase_14 AC 179 ms
78,080 KB
testcase_15 AC 63 ms
75,984 KB
testcase_16 AC 43 ms
64,640 KB
testcase_17 AC 182 ms
77,696 KB
testcase_18 AC 85 ms
76,672 KB
testcase_19 AC 58 ms
76,288 KB
testcase_20 AC 40 ms
58,752 KB
testcase_21 AC 40 ms
58,240 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