結果

問題 No.2709 1975 Powers
ユーザー areik
提出日時 2024-03-31 13:44:41
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,156 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 99,296 KB
最終ジャッジ日時 2025-02-20 16:30:52
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other TLE * 1 -- * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstring>
#include <iostream>
#include <tuple>
#include <vector>
using namespace std;
using i8 = int8_t;
using i32 = int;
using i64 = long long;
using i128 = __int128;
using u64 = unsigned long long;
using ll = long long;

void _main();
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  _main();
}

i64 pow(i64 x, i64 n) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res *= x;
    x *= x;
    n >>= 1;
  }
  return res;
}

i64 pow(i64 x, i64 n, i64 m) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res = res * x % m;
    x = x * x % m;
    n >>= 1;
  }
  return res;
}

const i64 inf = 1ll << 60;

void _main() {
  i64 n, p, q;
  cin >> n >> p >> q;
  vector<i64> a(n);
  for (i64 i = 0; i < n; i++) {
    cin >> a[i];
  }
  sort(a.begin(), a.end());
  vector<vector<i64>> dp(5, vector<i64>(p, 0));
  vector<i64> m = {10, 9, 7, 5};
  dp[0][0] = 1;
  for (i64 i = 0; i < n; i++) {
    for (i64 j = 3; j >= 0; j--) {
      for (i64 k = 0; k < p; k++) {
        dp[j + 1][(k + pow(m[j], a[i], p)) % p] += dp[j][k];
      }
    }
  }
  cout << dp[4][q] << "\n";
}
0