結果

問題 No.1126 SUM
ユーザー tyawanmusityawanmusi
提出日時 2020-07-25 15:33:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 500 ms / 1,000 ms
コード長 110 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,912 KB
最終ジャッジ日時 2024-06-27 06:46:20
合計ジャッジ時間 9,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
13,496 KB
testcase_01 AC 485 ms
13,312 KB
testcase_02 AC 124 ms
12,416 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 500 ms
13,488 KB
testcase_05 AC 349 ms
12,984 KB
testcase_06 AC 160 ms
12,616 KB
testcase_07 AC 254 ms
13,008 KB
testcase_08 AC 279 ms
13,100 KB
testcase_09 AC 358 ms
13,324 KB
testcase_10 AC 376 ms
13,912 KB
testcase_11 AC 225 ms
12,928 KB
testcase_12 AC 357 ms
13,700 KB
testcase_13 AC 150 ms
12,372 KB
testcase_14 AC 234 ms
13,072 KB
testcase_15 AC 187 ms
12,624 KB
testcase_16 AC 360 ms
13,420 KB
testcase_17 AC 172 ms
12,596 KB
testcase_18 AC 262 ms
12,980 KB
testcase_19 AC 471 ms
13,396 KB
testcase_20 AC 156 ms
12,600 KB
testcase_21 AC 450 ms
13,416 KB
testcase_22 AC 281 ms
13,032 KB
testcase_23 AC 414 ms
13,452 KB
testcase_24 AC 214 ms
13,092 KB
testcase_25 AC 387 ms
12,088 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