結果

問題 No.1126 SUM
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-07-28 11:53:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 482 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-06-28 20:39:26
合計ジャッジ時間 10,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
17,024 KB
testcase_01 AC 452 ms
18,048 KB
testcase_02 AC 197 ms
13,440 KB
testcase_03 AC 154 ms
12,800 KB
testcase_04 AC 464 ms
18,176 KB
testcase_05 AC 383 ms
16,640 KB
testcase_06 AC 239 ms
14,208 KB
testcase_07 AC 346 ms
16,128 KB
testcase_08 AC 349 ms
16,256 KB
testcase_09 AC 392 ms
16,896 KB
testcase_10 AC 410 ms
17,152 KB
testcase_11 AC 321 ms
15,744 KB
testcase_12 AC 420 ms
17,408 KB
testcase_13 AC 240 ms
14,208 KB
testcase_14 AC 299 ms
15,232 KB
testcase_15 AC 254 ms
14,592 KB
testcase_16 AC 402 ms
17,024 KB
testcase_17 AC 243 ms
14,336 KB
testcase_18 AC 336 ms
15,872 KB
testcase_19 AC 449 ms
17,920 KB
testcase_20 AC 231 ms
14,208 KB
testcase_21 AC 435 ms
17,664 KB
testcase_22 AC 332 ms
15,744 KB
testcase_23 AC 423 ms
17,408 KB
testcase_24 AC 306 ms
15,488 KB
testcase_25 AC 482 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
def comb(m, r):
    if m < r:return 0
    if m < 0 or r < 0:return 0
    return fa[m] * fi[r] % mod * fi[m - r] % mod
n, m = map(int, input().split())
fa = [1] * (m + 2)
fi = [1] * (m + 2)
for i in range(1, m + 2):
    fa[i] = fa[i - 1] * i % mod
    fi[i] = pow(fa[i], mod - 2, mod)
ans = 0
print(comb(m + 1, n + 1) % mod)
0