結果
問題 | No.2326 Factorial to the Power of Factorial to the... |
ユーザー | Ayuna |
提出日時 | 2023-05-28 15:58:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 75,588 KB |
最終ジャッジ日時 | 2024-06-08 09:04:06 |
合計ジャッジ時間 | 2,808 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
60,160 KB |
testcase_01 | WA | - |
testcase_02 | AC | 67 ms
62,848 KB |
testcase_03 | AC | 108 ms
70,528 KB |
testcase_04 | WA | - |
testcase_05 | AC | 79 ms
65,280 KB |
testcase_06 | AC | 100 ms
69,120 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 53 ms
60,288 KB |
testcase_11 | AC | 62 ms
62,080 KB |
testcase_12 | AC | 51 ms
60,312 KB |
testcase_13 | WA | - |
testcase_14 | AC | 116 ms
71,808 KB |
testcase_15 | WA | - |
testcase_16 | AC | 52 ms
59,392 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 55 ms
60,800 KB |
testcase_20 | AC | 39 ms
51,456 KB |
testcase_21 | AC | 40 ms
51,968 KB |
ソースコード
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)