結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー ntudantuda
提出日時 2023-07-03 13:18:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 62,192 KB
最終ジャッジ日時 2024-07-17 11:07:55
合計ジャッジ時間 2,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N, P = map(int, input().split())
fact1 = [1] * (N + 1)
fact2 = [1] * (N + 1)
r1 = 1
r2 = 1
cnt = 0
for i in range(1, N + 1):
    fact1[i] = r1 = r1 * i % MOD
    fact2[i] = r2 = r2 * i % (MOD - 1)
    n = i
    while n % P == 0:
        cnt += 1
        n //= P
ans = (cnt * pow(fact1[N], fact2[N], MOD)) % MOD
print(ans)
0