結果

問題 No.2709 1975 Powers
ユーザー ripityripity
提出日時 2024-03-31 13:54:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,018 bytes
コンパイル時間 2,669 ms
コンパイル使用メモリ 218,112 KB
実行使用メモリ 55,808 KB
最終ジャッジ日時 2024-09-30 18:36:42
合計ジャッジ時間 25,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 40 ms
6,816 KB
testcase_03 AC 979 ms
6,944 KB
testcase_04 AC 1,866 ms
40,448 KB
testcase_05 AC 1,217 ms
20,480 KB
testcase_06 AC 560 ms
17,792 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 528 ms
17,280 KB
testcase_09 AC 1,219 ms
32,768 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 63 ms
6,820 KB
testcase_12 AC 142 ms
6,912 KB
testcase_13 AC 1,373 ms
40,704 KB
testcase_14 AC 281 ms
9,600 KB
testcase_15 AC 289 ms
9,216 KB
testcase_16 AC 1,045 ms
29,312 KB
testcase_17 AC 10 ms
6,820 KB
testcase_18 AC 179 ms
9,856 KB
testcase_19 AC 1,728 ms
45,056 KB
testcase_20 AC 31 ms
6,824 KB
testcase_21 AC 505 ms
16,128 KB
testcase_22 AC 1,649 ms
6,820 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,996 ms
36,224 KB
testcase_26 AC 1,716 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long f(long long x, long long n, long long MOD) {
  long long ret = 1;
  while(n) {
    if(n&1) {
      ret *= x;
      ret %= MOD;
    }
    x *= x;
    x %= MOD;
    n >>= 1;
  }
  return ret;
}

int main() {
  long long N, P, Q;
  cin >> N >> P >> Q;
  vector<long long> A(N);
  for(int i = 0; i < N; i++) {
    cin >> A[i];
  }
  sort(A.begin(), A.end());
  vector cnt(N+1, unordered_map<long long, long long>());
  for(int i = N-1; i >= 0; i--) {
    cnt[i] = cnt[i+1];
    cnt[i][f(5, A[i], P)]++;
  }
  long long ans = 0;
  for(int i = 0; i < N; ++i) {
    for(int j = i+1; j < N; ++j) {
      for(int k = j+1; k < N; ++k) {
        long long s = f(10, A[i], P)+f(9, A[j], P)+f(7, A[k], P);
        s %= P;
        long long t = (P+Q-s)%P;
        // cout << A[i] << " " << A[j] << " " << A[k] << ": " << f(10, A[i], P) << " " << f(9, A[j], P) << " " << f(7, A[k], P) << " " << t << endl;
        ans += cnt[k+1][t];
      }
    }
  }
  cout << ans << endl;
}
0