QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#772929 | #1792. Beer Bill | I_be_wanna | WA | 0ms | 3676kb | C++17 | 1.5kb | 2024-11-22 23:01:29 | 2024-11-22 23:01:29 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define IO std::ios::sync_with_stdio(false)
#define int long long
#define INF 0x3f3f3f3f
const int maxn = 1010;
int fact[maxn];
inline int extgcd(int a,int b,int &x,int &y) {
int d = a;
if (b != 0) {
d = extgcd(b, a % b, y, x);
y -= (a / b) * x;
} else {
x = 1;
y = 0;
}
return d;
}
inline int mod_inverse(int a,int m){
int x,y;
extgcd(a,m,x,y);
return (m + x % m) % m;
}
inline int mod_fact(int n,int p,int &e) {
e = 0;
if (n == 0) return 1;
int res = mod_fact(n / p, p, e);
e += n / p;
if (n / p % 2 != 0) return res * (p - fact[n % p] % p);
return res * fact[n % p] % p;
}
inline int mod_comb(int n,int k,int p) {
if (n < 0 || k < 0 || n < k) return 0;
int e1, e2, e3;
int a1 = mod_fact(n, p, e1), a2 = mod_fact(k, p, e2), a3 = mod_fact(n - k, p, e3);
if (e1 > e2 + e3) return 0;
return a1 * mod_inverse(a2 * a3 % p, p) % p;
}
int A,B,K,C;
const int mod = 1e9 + 7;
signed main() {
IO;
cin >> A >> B >> K >> C;
fact[0] = 0, fact[1] = 1;
for (int i = 2; i <= maxn; i++) fact[i] = fact[i - 1] * i % mod;
if (A != C && B != C) {
cout << 0 << endl;
} else {
if (A == B) cout << K << endl;
else {
int ans = 0;
for (int i = 1; i <= K; i++) {
ans = (ans + i * mod_comb(K, i, mod) + mod) % mod;
}
cout << ans << endl;
}
}
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3676kb
input:
|||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 893,-||||||||| ||| ||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||| 545,-||||||||||||||||||||||| 810,-| 699,-||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||...
output:
0
result:
wrong answer 1st lines differ - expected: '773980,-', found: '0'