結果

問題 No.2709 1975 Powers
ユーザー haihamabossuhaihamabossu
提出日時 2024-03-31 14:03:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 208,212 KB
実行使用メモリ 66,500 KB
最終ジャッジ日時 2024-09-30 18:53:16
合計ジャッジ時間 6,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
65,832 KB
testcase_01 AC 129 ms
65,944 KB
testcase_02 AC 133 ms
66,340 KB
testcase_03 AC 140 ms
66,212 KB
testcase_04 AC 145 ms
66,360 KB
testcase_05 AC 146 ms
66,220 KB
testcase_06 AC 139 ms
65,928 KB
testcase_07 AC 130 ms
66,236 KB
testcase_08 AC 131 ms
66,384 KB
testcase_09 AC 140 ms
66,344 KB
testcase_10 AC 128 ms
66,448 KB
testcase_11 AC 128 ms
65,928 KB
testcase_12 AC 134 ms
66,500 KB
testcase_13 AC 142 ms
66,428 KB
testcase_14 AC 134 ms
66,056 KB
testcase_15 AC 132 ms
66,440 KB
testcase_16 AC 138 ms
66,228 KB
testcase_17 AC 129 ms
65,964 KB
testcase_18 AC 131 ms
66,428 KB
testcase_19 AC 144 ms
66,280 KB
testcase_20 AC 130 ms
66,372 KB
testcase_21 AC 134 ms
66,336 KB
testcase_22 AC 144 ms
66,448 KB
testcase_23 AC 144 ms
66,304 KB
testcase_24 AC 143 ms
66,080 KB
testcase_25 AC 144 ms
66,252 KB
testcase_26 AC 143 ms
66,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

const ll MX = 2'000'010, X[4] = {10, 9, 7, 5};
ll n, p, q, pw[4][MX + 10];
void solve() {
  cin >> n >> p >> q;
  vector<ll> A(n);
  rep(i, n) cin >> A[i];
  sort(A.begin(), A.end());
  rep(i, 4) {
    ll x = X[i];
    pw[i][0] = 1;
    rep(j, MX) pw[i][j + 1] = (pw[i][j] * x) % p;
  }
  vector<ll> cnt(p, 0);
  for (ll di = 3; di < n; di++)
    cnt[pw[3][A[di]]]++;
  ll ans = 0;
  for (ll ci = 2; ci < n; ci++) {
    for (ll bi = ci - 1; bi >= 0; bi--) {
      for (ll ai = bi - 1; ai >= 0; ai--) {
        ll a = A[ai];
        ll b = A[bi];
        ll c = A[ci];
        ll now = q - (pw[0][a] + pw[1][b] + pw[2][c]) % p;
        if (now < 0)
          now += p;
        ans += cnt[now];
      }
    }
    if (ci < n - 1)
      cnt[pw[3][A[ci + 1]]]--;
  }
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0