結果

問題 No.1035 Color Box
ユーザー H3PO4H3PO4
提出日時 2021-09-10 10:04:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-06-10 20:01:20
合計ジャッジ時間 7,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 400 ms
18,560 KB
testcase_01 AC 104 ms
18,560 KB
testcase_02 AC 107 ms
18,432 KB
testcase_03 AC 118 ms
18,432 KB
testcase_04 AC 124 ms
18,560 KB
testcase_05 AC 107 ms
18,432 KB
testcase_06 AC 99 ms
18,432 KB
testcase_07 AC 101 ms
18,560 KB
testcase_08 AC 349 ms
18,432 KB
testcase_09 AC 206 ms
18,560 KB
testcase_10 AC 104 ms
18,432 KB
testcase_11 AC 100 ms
18,432 KB
testcase_12 AC 101 ms
18,560 KB
testcase_13 AC 304 ms
18,560 KB
testcase_14 AC 348 ms
18,560 KB
testcase_15 AC 375 ms
18,432 KB
testcase_16 AC 103 ms
18,560 KB
testcase_17 AC 96 ms
18,560 KB
testcase_18 AC 99 ms
18,432 KB
testcase_19 AC 380 ms
18,560 KB
testcase_20 AC 101 ms
18,432 KB
testcase_21 AC 100 ms
18,560 KB
testcase_22 AC 100 ms
18,432 KB
testcase_23 AC 97 ms
18,432 KB
testcase_24 AC 100 ms
18,560 KB
testcase_25 AC 108 ms
18,432 KB
testcase_26 AC 101 ms
18,432 KB
testcase_27 AC 104 ms
18,432 KB
testcase_28 AC 99 ms
18,560 KB
testcase_29 AC 103 ms
18,432 KB
testcase_30 AC 98 ms
18,432 KB
testcase_31 AC 101 ms
18,432 KB
testcase_32 AC 99 ms
18,560 KB
testcase_33 AC 102 ms
18,432 KB
testcase_34 AC 98 ms
18,560 KB
testcase_35 AC 105 ms
18,560 KB
testcase_36 AC 100 ms
18,432 KB
testcase_37 AC 107 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
MOD = 10 ** 9 + 7
MAX = 10 ** 5 + 10
# https://tjkendev.github.io/procon-library/python/math/factorial.html から拝借しています。
fact = [1] * (MAX + 1)
rfact = [1] * (MAX + 1)
r = 1
for i in range(1, MAX + 1):
    fact[i] = r = r * i % MOD
rfact[MAX] = r = pow(fact[MAX], MOD - 2, MOD)
for i in range(MAX, 0, -1):
    rfact[i - 1] = r = r * i % MOD


def comb(n, k, error=0):
    if not 0 <= k <= n:
        return error
    return fact[n] * rfact[k] * rfact[n - k] % MOD


ans = 0
sign = 1
for i in range(M, 0, -1):
    ans += sign * pow(i, N, MOD) * comb(M, i)
    ans %= MOD
    sign *= -1
print(ans)
0