結果

問題 No.391 CODING WAR
ユーザー ああいいああいい
提出日時 2022-03-30 18:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-11-15 09:28:17
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,832 KB
testcase_01 AC 46 ms
59,776 KB
testcase_02 AC 45 ms
60,032 KB
testcase_03 AC 45 ms
59,648 KB
testcase_04 AC 45 ms
60,288 KB
testcase_05 AC 45 ms
59,776 KB
testcase_06 AC 46 ms
60,288 KB
testcase_07 AC 45 ms
60,032 KB
testcase_08 AC 46 ms
60,032 KB
testcase_09 AC 147 ms
67,584 KB
testcase_10 AC 123 ms
66,432 KB
testcase_11 AC 99 ms
65,664 KB
testcase_12 AC 45 ms
59,648 KB
testcase_13 AC 131 ms
67,072 KB
testcase_14 AC 126 ms
66,304 KB
testcase_15 AC 136 ms
66,816 KB
testcase_16 AC 103 ms
66,304 KB
testcase_17 AC 110 ms
66,176 KB
testcase_18 AC 95 ms
66,048 KB
testcase_19 AC 95 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

P = 10 ** 9 + 7
C = 10 ** 5 + 5
fact = [1] * C
fact_inv = [1] * C
for i in range(2,C):
    fact[i] = fact[i-1] * i % P
fact_inv[-1] = pow(fact[-1],P-2,P)
for i in range(C-2,0,-1):
    fact_inv[i] = fact_inv[i+1] * (i + 1) % P
def comb(n,k):
    return fact[n] * fact_inv[k] % P * fact_inv[n-k] % P

ans = 0
for i in range(M):
    if i & 1:
        c = -1
    else:
        c = 1
    ans += c * comb(M,i) * pow(M-i,N,P)
    ans %= P
print(ans)
0