結果

問題 No.1126 SUM
ユーザー もりをもりを
提出日時 2020-07-24 22:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 103 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,480 KB
最終ジャッジ日時 2024-06-25 22:10:26
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,160 KB
testcase_01 AC 97 ms
65,280 KB
testcase_02 AC 62 ms
60,544 KB
testcase_03 AC 70 ms
61,824 KB
testcase_04 AC 101 ms
66,048 KB
testcase_05 AC 87 ms
64,384 KB
testcase_06 AC 64 ms
61,440 KB
testcase_07 AC 53 ms
59,904 KB
testcase_08 AC 61 ms
60,672 KB
testcase_09 AC 74 ms
62,592 KB
testcase_10 AC 117 ms
68,480 KB
testcase_11 AC 52 ms
59,520 KB
testcase_12 AC 57 ms
60,288 KB
testcase_13 AC 56 ms
59,904 KB
testcase_14 AC 89 ms
64,640 KB
testcase_15 AC 85 ms
63,872 KB
testcase_16 AC 73 ms
62,592 KB
testcase_17 AC 72 ms
62,080 KB
testcase_18 AC 63 ms
60,800 KB
testcase_19 AC 105 ms
66,688 KB
testcase_20 AC 63 ms
61,056 KB
testcase_21 AC 104 ms
66,560 KB
testcase_22 AC 83 ms
63,744 KB
testcase_23 AC 82 ms
63,488 KB
testcase_24 AC 56 ms
59,904 KB
testcase_25 AC 42 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7
n,m=map(int,input().split())
r=1
for i in range(n+1):r*=m+1-i;r*=pow(i+1,M-2,M);r%=M
print(r)
0