結果

問題 No.1126 SUM
ユーザー pluto77pluto77
提出日時 2020-07-31 09:49:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 1,000 ms
コード長 122 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-07-05 21:07:18
合計ジャッジ時間 6,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
77,508 KB
testcase_01 AC 278 ms
82,368 KB
testcase_02 AC 83 ms
75,772 KB
testcase_03 AC 68 ms
75,376 KB
testcase_04 AC 292 ms
82,944 KB
testcase_05 AC 204 ms
80,000 KB
testcase_06 AC 105 ms
76,416 KB
testcase_07 AC 163 ms
76,544 KB
testcase_08 AC 152 ms
79,488 KB
testcase_09 AC 207 ms
80,996 KB
testcase_10 AC 198 ms
79,088 KB
testcase_11 AC 139 ms
76,288 KB
testcase_12 AC 254 ms
78,592 KB
testcase_13 AC 94 ms
76,160 KB
testcase_14 AC 144 ms
77,184 KB
testcase_15 AC 117 ms
76,032 KB
testcase_16 AC 201 ms
81,536 KB
testcase_17 AC 110 ms
76,640 KB
testcase_18 AC 148 ms
78,848 KB
testcase_19 AC 272 ms
82,176 KB
testcase_20 AC 101 ms
76,784 KB
testcase_21 AC 264 ms
81,612 KB
testcase_22 AC 164 ms
78,336 KB
testcase_23 AC 237 ms
81,920 KB
testcase_24 AC 156 ms
76,672 KB
testcase_25 AC 189 ms
81,108 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