結果
問題 | No.2326 Factorial to the Power of Factorial to the... |
ユーザー | prd_xxx |
提出日時 | 2023-05-28 14:31:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 632 bytes |
コンパイル時間 | 343 ms |
コンパイル使用メモリ | 82,612 KB |
実行使用メモリ | 74,336 KB |
最終ジャッジ日時 | 2024-12-27 01:52:13 |
合計ジャッジ時間 | 3,003 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
66,176 KB |
testcase_01 | WA | - |
testcase_02 | AC | 67 ms
67,584 KB |
testcase_03 | AC | 76 ms
70,912 KB |
testcase_04 | WA | - |
testcase_05 | AC | 70 ms
68,480 KB |
testcase_06 | AC | 75 ms
70,272 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 61 ms
66,432 KB |
testcase_11 | AC | 67 ms
67,072 KB |
testcase_12 | AC | 61 ms
65,280 KB |
testcase_13 | WA | - |
testcase_14 | AC | 80 ms
71,168 KB |
testcase_15 | WA | - |
testcase_16 | AC | 59 ms
64,768 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 63 ms
66,432 KB |
testcase_20 | AC | 52 ms
61,440 KB |
testcase_21 | AC | 52 ms
61,824 KB |
ソースコード
N,P = map(int,input().split()) MOD = 10**9+7 MAXN = 10**5 + 15 sieve = [i for i in range(MAXN+1)] p = 2 while p*p <= MAXN: if sieve[p] == p: for q in range(2*p,MAXN+1,p): if sieve[q] == q: sieve[q] = p p += 1 def is_prime(n): return sieve[n] == n from collections import Counter fc = Counter() f = 1 for n in range(2,N+1): m = n while sieve[m] > 1: fc[sieve[m]] += 1 f *= sieve[m] f %= MOD m //= sieve[m] #xc = Counter() x = 1 for k,v in fc.items(): #xc[k] = v*f%MOD x *= pow(k,v*f,MOD) x %= MOD ans = fc[P] * x % MOD print(ans)