結果

問題 No.1126 SUM
ユーザー H3PO4H3PO4
提出日時 2020-07-24 22:14:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 213 ms / 1,000 ms
コード長 221 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-25 21:42:12
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
10,496 KB
testcase_01 AC 106 ms
10,624 KB
testcase_02 AC 73 ms
10,624 KB
testcase_03 AC 42 ms
10,624 KB
testcase_04 AC 100 ms
10,368 KB
testcase_05 AC 95 ms
10,624 KB
testcase_06 AC 81 ms
10,496 KB
testcase_07 AC 149 ms
10,624 KB
testcase_08 AC 138 ms
10,496 KB
testcase_09 AC 125 ms
10,624 KB
testcase_10 AC 43 ms
10,368 KB
testcase_11 AC 144 ms
10,624 KB
testcase_12 AC 171 ms
10,624 KB
testcase_13 AC 101 ms
10,496 KB
testcase_14 AC 52 ms
10,624 KB
testcase_15 AC 50 ms
10,624 KB
testcase_16 AC 132 ms
10,624 KB
testcase_17 AC 66 ms
10,496 KB
testcase_18 AC 129 ms
10,496 KB
testcase_19 AC 83 ms
10,496 KB
testcase_20 AC 82 ms
10,624 KB
testcase_21 AC 83 ms
10,624 KB
testcase_22 AC 82 ms
10,496 KB
testcase_23 AC 121 ms
10,624 KB
testcase_24 AC 130 ms
10,496 KB
testcase_25 AC 213 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
MOD = 10 ** 9 + 7
modinv = lambda a, mod=MOD: pow(a, -1, mod)

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