結果

問題 No.2709 1975 Powers
ユーザー tobbietobbie
提出日時 2024-04-27 12:13:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 789 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 177,316 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-15 14:02:05
合計ジャッジ時間 73,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,016 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,091 ms
13,640 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,319 ms
10,148 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

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;

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