結果

問題 No.391 CODING WAR
ユーザー ああいいああいい
提出日時 2022-03-30 18:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 68,320 KB
最終ジャッジ日時 2024-04-27 08:43:06
合計ジャッジ時間 2,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,724 KB
testcase_01 AC 47 ms
61,664 KB
testcase_02 AC 47 ms
61,996 KB
testcase_03 AC 46 ms
60,736 KB
testcase_04 AC 46 ms
60,604 KB
testcase_05 AC 47 ms
61,252 KB
testcase_06 AC 47 ms
61,100 KB
testcase_07 AC 47 ms
61,816 KB
testcase_08 AC 46 ms
61,352 KB
testcase_09 AC 143 ms
68,320 KB
testcase_10 AC 125 ms
66,824 KB
testcase_11 AC 100 ms
67,208 KB
testcase_12 AC 46 ms
60,568 KB
testcase_13 AC 134 ms
67,696 KB
testcase_14 AC 128 ms
67,276 KB
testcase_15 AC 138 ms
68,228 KB
testcase_16 AC 105 ms
66,912 KB
testcase_17 AC 110 ms
66,700 KB
testcase_18 AC 95 ms
67,744 KB
testcase_19 AC 94 ms
66,980 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