結果
問題 | No.391 CODING WAR |
ユーザー | realDivineJK |
提出日時 | 2020-05-19 11:34:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,318 ms / 2,000 ms |
コード長 | 921 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-10-01 22:37:40 |
合計ジャッジ時間 | 10,465 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 33 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 32 ms
10,752 KB |
testcase_05 | AC | 32 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 32 ms
10,752 KB |
testcase_08 | AC | 31 ms
10,880 KB |
testcase_09 | AC | 1,318 ms
18,688 KB |
testcase_10 | AC | 1,133 ms
18,816 KB |
testcase_11 | AC | 698 ms
18,688 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 1,126 ms
18,560 KB |
testcase_14 | AC | 1,012 ms
16,640 KB |
testcase_15 | AC | 1,130 ms
17,536 KB |
testcase_16 | AC | 698 ms
14,592 KB |
testcase_17 | AC | 818 ms
15,360 KB |
testcase_18 | AC | 584 ms
13,824 KB |
testcase_19 | AC | 576 ms
13,952 KB |
ソースコード
N, M = map(int, input().split()) mod = int(1e9) + 7 maxf = M # <-- input factional limitation def doubling(n, m): y = 1 base = n tmp = m while tmp != 0: if tmp % 2 == 1: y *= base y %= mod base *= base base %= mod tmp //= 2 return y def inved(a): x, y, u, v, k, l = 1, 0, 0, 1, a, mod while l != 0: x, y, u, v = u, v, x - u * (k // l), y - v * (k // l) k, l = l, k % l return x % mod fact = [1 for _ in range(maxf+1)] invf = [1 for _ in range(maxf+1)] for i in range(maxf): fact[i+1] = (fact[i] * (i+1)) % mod invf[-1] = inved(fact[-1]) for i in range(maxf, 0, -1): invf[i-1] = (invf[i] * i) % mod S = 0 sign = (M % 2 == 0) - (M % 2 == 1) for i in range(M+1): S += sign * invf[i] * invf[M-i] * doubling(i, N) % mod S %= mod sign *= -1 if N < M: print(0) else: print((fact[M]*S) % mod)