結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 223 ms
110,720 KB
testcase_03 AC 380 ms
111,220 KB
testcase_04 AC 486 ms
110,976 KB
testcase_05 AC 415 ms
112,256 KB
testcase_06 AC 296 ms
112,000 KB
testcase_07 AC 237 ms
110,592 KB
testcase_08 AC 289 ms
112,128 KB
testcase_09 AC 414 ms
111,744 KB
testcase_10 AC 240 ms
112,640 KB
testcase_11 AC 234 ms
108,032 KB
testcase_12 AC 254 ms
112,384 KB
testcase_13 AC 429 ms
112,384 KB
testcase_14 AC 264 ms
110,976 KB
testcase_15 AC 268 ms
110,592 KB
testcase_16 AC 389 ms
112,640 KB
testcase_17 AC 252 ms
112,128 KB
testcase_18 AC 260 ms
112,128 KB
testcase_19 AC 507 ms
112,128 KB
testcase_20 AC 236 ms
107,648 KB
testcase_21 AC 284 ms
110,208 KB
testcase_22 AC 510 ms
112,640 KB
testcase_23 AC 506 ms
112,640 KB
testcase_24 AC 514 ms
112,768 KB
testcase_25 AC 510 ms
112,640 KB
testcase_26 AC 531 ms
112,768 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