結果

問題 No.1126 SUM
ユーザー iiljjiiljj
提出日時 2020-07-24 22:17:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 434 ms / 1,000 ms
コード長 102 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,996 KB
最終ジャッジ日時 2024-06-25 21:45:50
合計ジャッジ時間 8,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
13,348 KB
testcase_01 AC 419 ms
13,996 KB
testcase_02 AC 117 ms
12,416 KB
testcase_03 AC 87 ms
12,416 KB
testcase_04 AC 434 ms
13,632 KB
testcase_05 AC 309 ms
13,252 KB
testcase_06 AC 152 ms
12,780 KB
testcase_07 AC 264 ms
13,000 KB
testcase_08 AC 276 ms
13,292 KB
testcase_09 AC 333 ms
13,404 KB
testcase_10 AC 348 ms
13,424 KB
testcase_11 AC 230 ms
13,236 KB
testcase_12 AC 357 ms
13,184 KB
testcase_13 AC 150 ms
12,756 KB
testcase_14 AC 211 ms
12,936 KB
testcase_15 AC 167 ms
12,908 KB
testcase_16 AC 345 ms
13,524 KB
testcase_17 AC 155 ms
12,608 KB
testcase_18 AC 258 ms
12,984 KB
testcase_19 AC 409 ms
13,740 KB
testcase_20 AC 147 ms
12,736 KB
testcase_21 AC 401 ms
13,708 KB
testcase_22 AC 248 ms
13,212 KB
testcase_23 AC 371 ms
13,316 KB
testcase_24 AC 216 ms
12,816 KB
testcase_25 AC 386 ms
12,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial as f
n,m=map(int,input().split())
print(f(m+1)//(f(m-n)*f(n+1))%1000000007)
0