結果

問題 No.1126 SUM
ユーザー iiljjiiljj
提出日時 2020-07-24 22:30:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 499 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,872 KB
最終ジャッジ日時 2024-06-25 22:01:07
合計ジャッジ時間 8,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
13,628 KB
testcase_01 AC 464 ms
13,444 KB
testcase_02 AC 117 ms
12,544 KB
testcase_03 AC 89 ms
12,416 KB
testcase_04 AC 499 ms
13,616 KB
testcase_05 AC 341 ms
13,252 KB
testcase_06 AC 158 ms
12,608 KB
testcase_07 AC 263 ms
12,956 KB
testcase_08 AC 285 ms
13,288 KB
testcase_09 AC 354 ms
13,452 KB
testcase_10 AC 367 ms
13,872 KB
testcase_11 AC 222 ms
13,068 KB
testcase_12 AC 359 ms
13,572 KB
testcase_13 AC 146 ms
12,500 KB
testcase_14 AC 226 ms
13,072 KB
testcase_15 AC 180 ms
12,780 KB
testcase_16 AC 355 ms
13,420 KB
testcase_17 AC 164 ms
12,480 KB
testcase_18 AC 253 ms
12,988 KB
testcase_19 AC 451 ms
13,732 KB
testcase_20 AC 148 ms
12,612 KB
testcase_21 AC 435 ms
13,560 KB
testcase_22 AC 273 ms
12,828 KB
testcase_23 AC 406 ms
13,500 KB
testcase_24 AC 214 ms
12,940 KB
testcase_25 AC 374 ms
12,100 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