QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#520809 | #5661. Multi-Ladders | ouo# | WA | 0ms | 3668kb | C++20 | 948b | 2024-08-15 16:00:10 | 2024-08-15 16:00:10 |
Judging History
answer
#include <bits/stdc++.h>
#ifdef LOCAL
using std::cerr;
#else
#endif
#define F first
#define S second
#define pb push_back
#define ALL(x) begin(x), end(x)
using namespace std;
using pii = pair<int, int>;
using ll = long long;
const ll P = 1e9 + 7;
ll fpow(ll a, ll ti) {
if (ti < 1) return 1;
int tmp = fpow(a, ti>>1);
tmp *= tmp;
tmp %= P;
if (ti & 1) return tmp * a % P;
return tmp;
}
ll n, k, c;
signed main() {
ios::sync_with_stdio(0), cin.tie(0);
int tc = 1;
cin >> tc;
while (tc--) {
cin >> n >> k >> c;
ll a3 = c * (c - 1) * (c - 2);
ll an = c * fpow(c - 1, k - 1) % P;
an -= a3;
an = ((an % P) + P) % P;
ll t = (c - 1) + (c - 2) * (c - 2);
t %= P;
t = fpow(t, n - 1);
t = fpow(t, k);
ll ans = an * t % P;
cout << ans << '\n';
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3604kb
input:
1 2 3 3
output:
162
result:
ok single line: '162'
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3668kb
input:
20 2 3 3 1 3 3 10 3 0 10 3 2 1 21 2 1 22 0 2000 15000 2000 12000 30000 200000 1000000000 3 3 2 1000000000 3 2 3 100000000 1000000000 1000000000 10 1000000000 3 100000000 2 1000000000 100000000 1 1000000000 10 1 1000000000 100000000 1 1000 100000000 1000000000 1000000000 0 1000000000 1000000000 1 100...
output:
162 6 0 2 2 0 656030811 366345909 728924878 58281652 206896652 907726535 644227606 582178378 950956404 694038424 203803962 0 0 510931075
result:
wrong answer 4th lines differ - expected: '0', found: '2'