QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#219371 | #5661. Multi-Ladders | JenniferLing# | WA | 0ms | 3640kb | C++17 | 839b | 2023-10-19 13:40:16 | 2023-10-19 13:40:17 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int M = 1e9 + 7;
int mypw(int x, int y) {
int res = 1;
while (y) {
if (y & 1) (res *= x) %= M;
(x *= x) %= M;
y >>= 1;
}
return res;
}
int mul(int x, int y) {
return (x * y) % M;
}
void solve() {
int n, k, l; cin >> n >> k >> l;
if (l == 0 || l == 1) {
cout << "0\n";
return;
}
if (l == 2) {
if (k & 1) cout << "0\n";
else cout << "1\n";
return;
}
if (k & 1) cout << mul(mypw(mypw(l - 1, 2) - 1, (n - 1) * k), (mypw(l - 1, k) - (l - 1) + M) % M) << "\n";
else cout << mul(mypw(mypw(l - 1, 2) - 1, (n - 1) * k), (mypw(l - 1, k) + l - 1) % M) << "\n";
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
int T = 1;
cin >> T;
while (T--) solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3620kb
input:
1 2 3 3
output:
162
result:
ok single line: '162'
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3640kb
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 0 0 0 276995160 407607609 52489881 53690844 98832450 846090933 543620055 992214290 693053429 883715672 80402569 0 0 344896140
result:
wrong answer 7th lines differ - expected: '349400141', found: '276995160'