結果

問題 No.391 CODING WAR
ユーザー dangodango
提出日時 2023-06-13 20:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 76,140 KB
最終ジャッジ日時 2024-06-22 06:39:05
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 41 ms
53,684 KB
testcase_02 AC 37 ms
53,012 KB
testcase_03 AC 38 ms
52,320 KB
testcase_04 AC 37 ms
52,344 KB
testcase_05 AC 37 ms
52,004 KB
testcase_06 AC 38 ms
52,460 KB
testcase_07 AC 39 ms
53,968 KB
testcase_08 AC 38 ms
52,388 KB
testcase_09 AC 246 ms
75,940 KB
testcase_10 AC 220 ms
75,812 KB
testcase_11 AC 38 ms
53,168 KB
testcase_12 AC 37 ms
52,588 KB
testcase_13 AC 231 ms
75,820 KB
testcase_14 AC 201 ms
76,140 KB
testcase_15 AC 224 ms
75,824 KB
testcase_16 AC 152 ms
75,784 KB
testcase_17 AC 170 ms
75,760 KB
testcase_18 AC 135 ms
75,924 KB
testcase_19 AC 137 ms
75,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
if N < M:
    print(0)
    exit(0)
r, c = 0, 1
for i in range(M):
    r += (-1) ** i * c * pow(M - i, N, (10 ** 9 + 7))
    r %= (10 ** 9 + 7)
    c *= M -  i
    c %= (10 ** 9 + 7)
    c *= pow(i + 1, (10 ** 9 + 7) - 2, (10 ** 9 + 7))
    c % (10 ** 9 + 7)
print(r)
0