結果

問題 No.1126 SUM
ユーザー pluto77pluto77
提出日時 2020-07-31 09:49:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 488 ms / 1,000 ms
コード長 122 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 13,784 KB
最終ジャッジ日時 2024-07-05 21:07:01
合計ジャッジ時間 9,083 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
13,624 KB
testcase_01 AC 466 ms
13,280 KB
testcase_02 AC 118 ms
12,288 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 488 ms
13,484 KB
testcase_05 AC 341 ms
12,980 KB
testcase_06 AC 152 ms
12,480 KB
testcase_07 AC 246 ms
12,748 KB
testcase_08 AC 270 ms
13,100 KB
testcase_09 AC 357 ms
13,196 KB
testcase_10 AC 363 ms
13,784 KB
testcase_11 AC 215 ms
12,928 KB
testcase_12 AC 342 ms
13,696 KB
testcase_13 AC 144 ms
12,372 KB
testcase_14 AC 227 ms
12,840 KB
testcase_15 AC 178 ms
12,624 KB
testcase_16 AC 341 ms
13,428 KB
testcase_17 AC 162 ms
12,344 KB
testcase_18 AC 253 ms
13,108 KB
testcase_19 AC 449 ms
13,520 KB
testcase_20 AC 147 ms
12,464 KB
testcase_21 AC 441 ms
13,412 KB
testcase_22 AC 275 ms
12,780 KB
testcase_23 AC 399 ms
13,456 KB
testcase_24 AC 209 ms
12,836 KB
testcase_25 AC 368 ms
12,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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