結果

問題 No.2709 1975 Powers
ユーザー reirei
提出日時 2024-03-31 13:49:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 766 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 1,049 ms
コンパイル使用メモリ 105,968 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-03-31 13:49:31
合計ジャッジ時間 11,863 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 225 ms
7,424 KB
testcase_03 AC 378 ms
6,676 KB
testcase_04 AC 646 ms
6,912 KB
testcase_05 AC 515 ms
6,676 KB
testcase_06 AC 162 ms
6,676 KB
testcase_07 AC 69 ms
7,168 KB
testcase_08 AC 482 ms
7,424 KB
testcase_09 AC 568 ms
6,784 KB
testcase_10 AC 75 ms
7,296 KB
testcase_11 AC 109 ms
6,676 KB
testcase_12 AC 385 ms
7,936 KB
testcase_13 AC 698 ms
7,552 KB
testcase_14 AC 210 ms
6,676 KB
testcase_15 AC 462 ms
7,808 KB
testcase_16 AC 292 ms
6,676 KB
testcase_17 AC 82 ms
6,676 KB
testcase_18 AC 401 ms
7,808 KB
testcase_19 AC 573 ms
6,676 KB
testcase_20 AC 208 ms
7,680 KB
testcase_21 AC 478 ms
7,424 KB
testcase_22 AC 766 ms
7,424 KB
testcase_23 AC 609 ms
6,676 KB
testcase_24 AC 353 ms
6,676 KB
testcase_25 AC 589 ms
6,676 KB
testcase_26 AC 657 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstring>
#include <iostream>
#include <set>
#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};
  vector<vector<i64>> be(n, vector<i64>(4));
  for (i64 i = 0; i < n; i++) {
    for (i64 j = 0; j < 4; j++) {
      be[i][j] = pow(m[j], a[i], p);
    }
  }
  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 + be[i][j]) % p] += dp[j][k];
      }
    }
  }
  cout << dp[4][q] << "\n";
}
0