#include<bits/stdc++.h>
using namespace std;
long long n, m, x, s = 1, mod = 1e9 + 7;
int main()
{
cin >> n >> m;
for(int i = 1; i <= n; ++i) cin >> x;
m -= 1;
for(int i = 2; i <= n; ++i)
{
s *= i;
m -= x;
s %= mod;
}
if(m < 0)
{
cout << 0;
return 0;
}
int t = n + 1;
for(int i = 1; i <= m; ++i, ++t)
{
s = (s * t / i) % mod;
}
cout << s;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |