結果

問題 No.1126 SUM
ユーザー iiljjiiljj
提出日時 2020-07-24 22:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 351 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-06-25 22:25:30
合計ジャッジ時間 6,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
77,824 KB
testcase_01 AC 341 ms
82,816 KB
testcase_02 AC 108 ms
76,160 KB
testcase_03 AC 91 ms
75,520 KB
testcase_04 AC 351 ms
83,072 KB
testcase_05 AC 247 ms
79,616 KB
testcase_06 AC 133 ms
77,056 KB
testcase_07 AC 202 ms
76,928 KB
testcase_08 AC 191 ms
79,488 KB
testcase_09 AC 258 ms
81,280 KB
testcase_10 AC 246 ms
79,232 KB
testcase_11 AC 171 ms
76,288 KB
testcase_12 AC 296 ms
78,592 KB
testcase_13 AC 121 ms
76,288 KB
testcase_14 AC 179 ms
77,440 KB
testcase_15 AC 149 ms
76,416 KB
testcase_16 AC 248 ms
81,920 KB
testcase_17 AC 139 ms
76,416 KB
testcase_18 AC 178 ms
79,360 KB
testcase_19 AC 332 ms
82,432 KB
testcase_20 AC 129 ms
76,672 KB
testcase_21 AC 321 ms
81,792 KB
testcase_22 AC 207 ms
78,592 KB
testcase_23 AC 294 ms
81,536 KB
testcase_24 AC 193 ms
76,416 KB
testcase_25 AC 231 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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