結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 10 ms
25,372 KB
testcase_03 AC 43 ms
46,112 KB
testcase_04 AC 101 ms
66,440 KB
testcase_05 AC 66 ms
55,724 KB
testcase_06 AC 22 ms
31,268 KB
testcase_07 AC 4 ms
9,976 KB
testcase_08 AC 38 ms
49,544 KB
testcase_09 AC 78 ms
59,660 KB
testcase_10 AC 5 ms
9,980 KB
testcase_11 AC 9 ms
24,752 KB
testcase_12 AC 20 ms
38,588 KB
testcase_13 AC 82 ms
68,424 KB
testcase_14 AC 19 ms
32,444 KB
testcase_15 AC 29 ms
45,936 KB
testcase_16 AC 50 ms
40,016 KB
testcase_17 AC 5 ms
16,380 KB
testcase_18 AC 23 ms
40,556 KB
testcase_19 AC 95 ms
61,904 KB
testcase_20 AC 10 ms
22,864 KB
testcase_21 AC 38 ms
49,032 KB
testcase_22 AC 65 ms
75,712 KB
testcase_23 AC 115 ms
64,384 KB
testcase_24 AC 93 ms
45,780 KB
testcase_25 AC 114 ms
62,672 KB
testcase_26 AC 97 ms
68,412 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