QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#219310#5661. Multi-LaddersJenniferLing#WA 0ms3644kbC++17845b2023-10-19 11:40:442023-10-19 11:40:45

Judging History

你现在查看的是最新测评结果

  • [2023-10-19 11:40:45]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3644kb
  • [2023-10-19 11:40:44]
  • 提交

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 || l == 2) { 
    cout << "0\n";
    return;
  }
  if (n >= 4) {
    cout << mul(mypw((mypw(l - 1, 2) - 1 + M) % M, (n - 1) * k % M), (mul(l, mypw(l - 1, k - 2)) + mul(mul(l, mypw(l - 1, k - 3)), mypw(l - 2, 2))) % M) << "\n";
  }
  else cout << mul(mypw((mypw(l - 1, 2) - 1 + M) % M, (n - 1) * k % M), mul(l, mul(l - 1, l - 2))) << "\n"; 
}

signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  int T = 1;
  cin >> T;
  while (T--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

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: 3644kb

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
346905289
740305328
508748317
415637863
98832450
284848558
158619162
832952046
720
459000000
459000000
0
0
606156519

result:

wrong answer 7th lines differ - expected: '349400141', found: '346905289'