結果

問題 No.391 CODING WAR
ユーザー realDivineJKrealDivineJK
提出日時 2020-05-19 11:34:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,313 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-04-09 22:05:06
合計ジャッジ時間 10,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 29 ms
11,008 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 1,313 ms
18,816 KB
testcase_10 AC 1,118 ms
18,688 KB
testcase_11 AC 690 ms
18,816 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 1,109 ms
18,688 KB
testcase_14 AC 993 ms
16,768 KB
testcase_15 AC 1,116 ms
17,536 KB
testcase_16 AC 694 ms
14,720 KB
testcase_17 AC 798 ms
15,744 KB
testcase_18 AC 575 ms
13,952 KB
testcase_19 AC 562 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0