結果

問題 No.2709 1975 Powers
ユーザー tobbietobbie
提出日時 2024-04-27 17:35:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 176,512 KB
実行使用メモリ 112,736 KB
最終ジャッジ日時 2024-04-27 17:35:22
合計ジャッジ時間 10,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 221 ms
110,616 KB
testcase_03 AC 390 ms
111,224 KB
testcase_04 AC 463 ms
111,032 KB
testcase_05 AC 384 ms
112,396 KB
testcase_06 AC 293 ms
111,992 KB
testcase_07 AC 215 ms
110,524 KB
testcase_08 AC 273 ms
112,144 KB
testcase_09 AC 412 ms
111,824 KB
testcase_10 AC 237 ms
112,628 KB
testcase_11 AC 220 ms
108,120 KB
testcase_12 AC 232 ms
112,380 KB
testcase_13 AC 390 ms
112,380 KB
testcase_14 AC 237 ms
110,832 KB
testcase_15 AC 260 ms
110,752 KB
testcase_16 AC 348 ms
112,556 KB
testcase_17 AC 220 ms
112,292 KB
testcase_18 AC 238 ms
112,188 KB
testcase_19 AC 491 ms
112,396 KB
testcase_20 AC 214 ms
107,568 KB
testcase_21 AC 258 ms
110,312 KB
testcase_22 AC 487 ms
112,628 KB
testcase_23 AC 463 ms
112,532 KB
testcase_24 AC 473 ms
112,624 KB
testcase_25 AC 497 ms
112,736 KB
testcase_26 AC 481 ms
112,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, j, n) for (int i = (int)j; i < (int)(n); i++)
using ll = long long int;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;

int main() {
  int N, P, Q;
  cin >> N >> P >> Q;
  vi A(N);
  int amax = 0;
  rep(i, 0, N) {
    cin >> A[i];
    amax = max(A[i], amax);
  }
  sort(A.begin(), A.end());
  vi o = {10, 9, 7, 5};
  vvi a(amax+2, vi (4, 1));
  rep(i, 0, amax+1) {
    rep(k, 0, 4)
      a[i+1][k] = ((ll)a[i][k] * (ll)o[k]) % P;
  }
  auto dfs = [&](auto dfs, int x, int n, int depth) {
    x = (x + a[A[n]][depth]) % P;
    if (depth == 3) {
      if (x % P == Q)
	return 1;
      else
	return 0;
    }
    int ans = 0;
    rep(i, n+1, N)
      ans += dfs(dfs, x, i, depth+1);
    return ans;
  };
  int ans = 0;
  rep(i, 0, N)
    ans += dfs(dfs, 0, i, 0);
  cout << ans << endl;
  return 0;
}
0