結果

問題 No.1126 SUM
ユーザー るさるさ
提出日時 2020-07-26 17:38:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 99 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-28 18:45:36
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,008 KB
testcase_01 AC 82 ms
12,928 KB
testcase_02 AC 39 ms
11,136 KB
testcase_03 AC 45 ms
11,520 KB
testcase_04 AC 81 ms
13,184 KB
testcase_05 AC 69 ms
12,544 KB
testcase_06 AC 42 ms
11,392 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 37 ms
11,264 KB
testcase_09 AC 52 ms
11,904 KB
testcase_10 AC 99 ms
13,824 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 35 ms
11,264 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 68 ms
12,544 KB
testcase_15 AC 64 ms
12,544 KB
testcase_16 AC 51 ms
11,904 KB
testcase_17 AC 49 ms
11,904 KB
testcase_18 AC 39 ms
11,264 KB
testcase_19 AC 85 ms
13,184 KB
testcase_20 AC 40 ms
11,264 KB
testcase_21 AC 87 ms
13,312 KB
testcase_22 AC 65 ms
12,416 KB
testcase_23 AC 62 ms
12,288 KB
testcase_24 AC 33 ms
11,136 KB
testcase_25 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n,m=list(map(int,input().split()))
r=1
for i in range(m-n+1,m+2):
    r=(r*i)%mod

inv=[0,1]
for i in range(2,n+2):
    inv.append((mod-inv[mod%i]*(mod//i))%mod)
    r=(r*inv[-1])%mod

print(r)
0