이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
// @JASPER'S BOILERPLATE
using namespace std;
using ll = long long;
#ifdef JASPER
#include "debug.h"
#else
#define debug(...) 166
#endif
const int MOD = 1e9 + 7;
const int N = 2e4 + 5;
int bPow(int a, int b) {
ll ans = 1;
while (b) {
if (b & 1) ans = (1LL * ans * a) % MOD;
a = (1LL * a * a) % MOD;
b >>= 1;
}
return ans;
}
int fac[N], inv[N];
void prepare() {
fac[0] = 1;
for (int i = 1; i < N; ++i)
fac[i] = (1LL * fac[i - 1] * i) % MOD;
inv[N - 1] = bPow(fac[N - 1], MOD - 2);
for (int i = N - 2; i >= 0; --i)
inv[i] = (1LL * inv[i + 1] * (i + 1)) % MOD;
}
int C(int k, int n) {
if (k > n) return 0;
return ((1LL * fac[n] * inv[n - k]) % MOD * (inv[k])) % MOD;
}
signed main() {
cin.tie(0) -> sync_with_stdio(0);
#ifdef JASPER
freopen("in1", "r", stdin);
#endif
prepare();
int n, l;
cin >> n >> l;
vector <int> a(n + 1);
for (int i = 1; i <= n; ++i) cin >> a[i];
sort(a.begin(), a.end());
if (a[1] == a[n]) {
// sub1
int p = (n - 1) * a[1] + 1;
ll ans = (1LL * fac[n] * C(n, n + l - p));
cout << ans << "\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |