結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー AyunaAyuna
提出日時 2023-05-28 15:58:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-12-27 10:11:40
合計ジャッジ時間 4,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
59,904 KB
testcase_01 WA -
testcase_02 AC 75 ms
62,848 KB
testcase_03 AC 113 ms
70,400 KB
testcase_04 WA -
testcase_05 AC 85 ms
65,024 KB
testcase_06 AC 107 ms
68,864 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 61 ms
60,032 KB
testcase_11 AC 66 ms
61,696 KB
testcase_12 AC 54 ms
59,776 KB
testcase_13 WA -
testcase_14 AC 124 ms
71,680 KB
testcase_15 WA -
testcase_16 AC 57 ms
58,880 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 65 ms
60,416 KB
testcase_20 AC 42 ms
51,840 KB
testcase_21 AC 42 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
pcnt = 0
pnow = p
while pnow <= n:
    pcnt += n // pnow
    pnow *= p
mod = 10 ** 9 + 7

def bikkuri_pre(n):
    global bikkuri, irukkib
    bikkuri = [1]
    irukkib = [1]
    for i in range(1, n + 1):
        bikkuri.append((bikkuri[-1] * i) % mod)
    for i in range(1, n + 1):
        irukkib.append(pow(bikkuri[i], mod - 2, mod))

bikkuri_pre(n)
print(pcnt * pow(bikkuri[n], bikkuri[n], mod) % mod)
0