結果

問題 No.2709 1975 Powers
ユーザー reirei
提出日時 2024-03-31 13:49:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 106,832 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-09-30 18:27:09
合計ジャッジ時間 10,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 196 ms
7,296 KB
testcase_03 AC 327 ms
5,760 KB
testcase_04 AC 565 ms
6,784 KB
testcase_05 AC 448 ms
6,400 KB
testcase_06 AC 144 ms
5,248 KB
testcase_07 AC 60 ms
7,040 KB
testcase_08 AC 425 ms
7,424 KB
testcase_09 AC 518 ms
6,656 KB
testcase_10 AC 64 ms
7,168 KB
testcase_11 AC 95 ms
5,248 KB
testcase_12 AC 341 ms
7,808 KB
testcase_13 AC 612 ms
7,552 KB
testcase_14 AC 185 ms
5,376 KB
testcase_15 AC 416 ms
7,808 KB
testcase_16 AC 264 ms
5,248 KB
testcase_17 AC 75 ms
5,632 KB
testcase_18 AC 351 ms
7,680 KB
testcase_19 AC 502 ms
6,400 KB
testcase_20 AC 186 ms
7,552 KB
testcase_21 AC 420 ms
7,424 KB
testcase_22 AC 669 ms
7,424 KB
testcase_23 AC 542 ms
6,528 KB
testcase_24 AC 310 ms
5,248 KB
testcase_25 AC 515 ms
6,528 KB
testcase_26 AC 591 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