結果

問題 No.391 CODING WAR
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 17:07:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 79,772 KB
最終ジャッジ日時 2024-11-04 17:07:31
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,720 KB
testcase_01 AC 36 ms
52,688 KB
testcase_02 AC 35 ms
53,228 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 38 ms
52,436 KB
testcase_05 AC 36 ms
52,848 KB
testcase_06 AC 35 ms
53,468 KB
testcase_07 AC 38 ms
52,392 KB
testcase_08 AC 36 ms
53,424 KB
testcase_09 AC 159 ms
79,500 KB
testcase_10 AC 136 ms
79,772 KB
testcase_11 AC 57 ms
73,688 KB
testcase_12 AC 35 ms
52,344 KB
testcase_13 AC 146 ms
79,544 KB
testcase_14 AC 132 ms
78,772 KB
testcase_15 AC 144 ms
78,824 KB
testcase_16 AC 111 ms
74,908 KB
testcase_17 AC 112 ms
76,084 KB
testcase_18 AC 98 ms
74,540 KB
testcase_19 AC 95 ms
73,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
MOD = 10**9 + 7

fac = [1] * (M + 1)
for i in range(1, M + 1):
    fac[i] = fac[i - 1] * i % MOD
rev_fac = [1] * (M + 1)
rev_fac[M] = pow(fac[M], MOD - 2, MOD)
for i in range(M - 1, 0, -1):
    rev_fac[i] = rev_fac[i + 1] * (i + 1) % MOD
comb = [1] * (M + 1)
for i in range(1, M + 1):
    comb[i] = fac[M] * rev_fac[i] * rev_fac[M - i] % MOD

if N < M:
    print(0)
else:
    res = 0
    for i in range(M):
        v = comb[i] * pow(M - i, N, MOD)
        if i % 2 == 0:
            res += v
        else:
            res -= v
    print(res % MOD)
0