結果

問題 No.1126 SUM
ユーザー もりをもりを
提出日時 2020-07-24 22:39:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 1,000 ms
コード長 98 bytes
コンパイル時間 747 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-06-25 22:14:07
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
78,084 KB
testcase_01 AC 324 ms
82,760 KB
testcase_02 AC 95 ms
76,020 KB
testcase_03 AC 79 ms
75,336 KB
testcase_04 AC 339 ms
83,456 KB
testcase_05 AC 229 ms
79,956 KB
testcase_06 AC 119 ms
76,584 KB
testcase_07 AC 187 ms
77,056 KB
testcase_08 AC 176 ms
79,684 KB
testcase_09 AC 240 ms
81,400 KB
testcase_10 AC 235 ms
79,232 KB
testcase_11 AC 157 ms
76,908 KB
testcase_12 AC 291 ms
78,756 KB
testcase_13 AC 108 ms
76,800 KB
testcase_14 AC 164 ms
77,312 KB
testcase_15 AC 133 ms
76,112 KB
testcase_16 AC 236 ms
82,144 KB
testcase_17 AC 127 ms
76,672 KB
testcase_18 AC 169 ms
79,232 KB
testcase_19 AC 313 ms
82,432 KB
testcase_20 AC 113 ms
77,184 KB
testcase_21 AC 306 ms
82,048 KB
testcase_22 AC 199 ms
78,464 KB
testcase_23 AC 276 ms
82,048 KB
testcase_24 AC 178 ms
76,416 KB
testcase_25 AC 216 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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