結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー stunniitastunniita
提出日時 2023-05-28 16:53:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-12-27 12:13:30
合計ジャッジ時間 5,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
10,624 KB
testcase_01 AC 402 ms
11,648 KB
testcase_02 AC 97 ms
10,880 KB
testcase_03 AC 307 ms
11,264 KB
testcase_04 AC 190 ms
11,008 KB
testcase_05 AC 148 ms
11,008 KB
testcase_06 AC 249 ms
11,264 KB
testcase_07 AC 388 ms
11,648 KB
testcase_08 AC 408 ms
11,648 KB
testcase_09 AC 406 ms
11,648 KB
testcase_10 AC 49 ms
10,496 KB
testcase_11 AC 79 ms
10,752 KB
testcase_12 AC 40 ms
10,624 KB
testcase_13 AC 178 ms
11,008 KB
testcase_14 AC 332 ms
11,520 KB
testcase_15 AC 60 ms
10,752 KB
testcase_16 AC 36 ms
10,624 KB
testcase_17 AC 340 ms
11,520 KB
testcase_18 AC 123 ms
11,008 KB
testcase_19 AC 61 ms
10,624 KB
testcase_20 AC 38 ms
10,624 KB
testcase_21 AC 33 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

MOD = 10 ** 9 + 7
N,P = map(int, input().split())

# るしゃんどる
fst = 0
fst_p = P
while True:
    x = N // fst_p
    if x == 0:break
    fst += x
    fst_p *= P

#print(f"{fst=}")

# N! mod P
snd = 1
for i in range(1,N+1):
    snd *= i
    snd %= MOD

if snd == 0: snd = MOD

#print(f"{snd=}")

thd = math.factorial(N)

#print(f"{thd=}")

ans = fst * pow(snd,thd,MOD)

print(ans % MOD)
0