結果

問題 No.2709 1975 Powers
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 10:16:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 1,247 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 48,896 KB
実行使用メモリ 80,956 KB
最終ジャッジ日時 2024-04-30 10:16:27
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 10 ms
25,464 KB
testcase_03 AC 36 ms
68,112 KB
testcase_04 AC 87 ms
77,356 KB
testcase_05 AC 54 ms
70,384 KB
testcase_06 AC 22 ms
51,240 KB
testcase_07 AC 4 ms
9,812 KB
testcase_08 AC 38 ms
52,496 KB
testcase_09 AC 66 ms
70,624 KB
testcase_10 AC 4 ms
10,356 KB
testcase_11 AC 9 ms
28,820 KB
testcase_12 AC 14 ms
38,676 KB
testcase_13 AC 70 ms
71,588 KB
testcase_14 AC 17 ms
43,384 KB
testcase_15 AC 24 ms
46,404 KB
testcase_16 AC 45 ms
65,644 KB
testcase_17 AC 5 ms
16,372 KB
testcase_18 AC 19 ms
41,084 KB
testcase_19 AC 81 ms
76,820 KB
testcase_20 AC 8 ms
22,920 KB
testcase_21 AC 33 ms
52,000 KB
testcase_22 AC 57 ms
80,956 KB
testcase_23 AC 91 ms
80,528 KB
testcase_24 AC 72 ms
79,812 KB
testcase_25 AC 86 ms
80,624 KB
testcase_26 AC 67 ms
80,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2709.cc:  No.2709 1975 Powers - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 200;
const int K = 4;
const int MAX_P = 100000;
const int ds[K] = { 10, 9, 7, 5 };

/* typedef */

typedef long long ll;

/* global variables */

int as[MAX_N], es[MAX_N][K], cs[MAX_N + 1][MAX_P];

/* subroutines */

int powmod(int a, int b, int mod) {
  int p = 1;
  while (b > 0) {
    if (b & 1) p = (ll)p * a % mod;
    a = (ll)a * a % mod;
    b >>= 1;
  }
  return p;
}

/* main */

int main() {
  int n, p, q;
  scanf("%d%d%d", &n, &p, &q);
  for (int i = 0; i < n; i++) scanf("%d", as + i);
  sort(as, as + n);

  for (int i = 0; i < n; i++)
    for (int j = 0; j < K; j++) es[i][j] = powmod(ds[j], as[i], p);

  for (int i = n - 1; i >= 0; i--) {
    copy(cs[i + 1], cs[i + 1] + p, cs[i]);
    cs[i][es[i][3]]++;
  }

  ll sum = 0;
  for (int i = 0; i < n; i++)
    for (int j = i + 1; j < n; j++)
      if (as[i] < as[j])
	for (int k = j + 1; k < n; k++)
	  if (as[j] < as[k]) {
	    int l = upper_bound(as, as + n, as[k]) - as;
	    int x = (q + p - (es[i][0] + es[j][1] + es[k][2]) % p) % p;
	    sum += cs[l][x];
	  }

  printf("%lld\n", sum);
  
  return 0;
}
0