結果

問題 No.1126 SUM
ユーザー tyawanmusityawanmusi
提出日時 2020-07-25 15:34:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 354 ms / 1,000 ms
コード長 110 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-06-27 06:47:06
合計ジャッジ時間 6,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
77,632 KB
testcase_01 AC 345 ms
82,364 KB
testcase_02 AC 99 ms
75,648 KB
testcase_03 AC 84 ms
75,100 KB
testcase_04 AC 354 ms
83,328 KB
testcase_05 AC 246 ms
79,360 KB
testcase_06 AC 124 ms
76,628 KB
testcase_07 AC 194 ms
76,416 KB
testcase_08 AC 185 ms
79,232 KB
testcase_09 AC 251 ms
80,968 KB
testcase_10 AC 241 ms
79,360 KB
testcase_11 AC 168 ms
76,800 KB
testcase_12 AC 307 ms
78,996 KB
testcase_13 AC 113 ms
76,032 KB
testcase_14 AC 172 ms
77,440 KB
testcase_15 AC 140 ms
76,416 KB
testcase_16 AC 246 ms
81,664 KB
testcase_17 AC 135 ms
76,160 KB
testcase_18 AC 179 ms
79,232 KB
testcase_19 AC 333 ms
82,188 KB
testcase_20 AC 126 ms
76,416 KB
testcase_21 AC 325 ms
82,048 KB
testcase_22 AC 208 ms
78,084 KB
testcase_23 AC 295 ms
81,868 KB
testcase_24 AC 187 ms
76,288 KB
testcase_25 AC 231 ms
80,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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