結果

問題 No.391 CODING WAR
ユーザー lloyzlloyz
提出日時 2023-02-26 16:03:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,956 KB
最終ジャッジ日時 2024-09-14 06:32:35
合計ジャッジ時間 3,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 241 ms
75,648 KB
testcase_10 AC 221 ms
75,520 KB
testcase_11 AC 37 ms
52,220 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 231 ms
75,596 KB
testcase_14 AC 203 ms
75,648 KB
testcase_15 AC 222 ms
75,648 KB
testcase_16 AC 164 ms
75,956 KB
testcase_17 AC 169 ms
75,904 KB
testcase_18 AC 134 ms
75,776 KB
testcase_19 AC 134 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
mod = 10**9 + 7

if n < m:
    print(0)
    exit()

ans = 0
comb = 1
for i in range(m):
    ans += (-1)**i * comb * pow(m - i, n, mod)
    ans %= mod
    comb *= m - i
    comb %= mod
    comb *= pow(i + 1, mod - 2, mod)
    comb % mod
print(ans)
0