結果

問題 No.2709 1975 Powers
ユーザー forest3forest3
提出日時 2024-07-12 21:24:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,248 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 185,988 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-07-12 21:24:35
合計ジャッジ時間 15,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 16 ms
6,944 KB
testcase_03 AC 446 ms
7,296 KB
testcase_04 AC 1,028 ms
43,520 KB
testcase_05 AC 558 ms
22,400 KB
testcase_06 AC 260 ms
18,560 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 241 ms
18,176 KB
testcase_09 AC 726 ms
35,840 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 33 ms
6,940 KB
testcase_12 AC 71 ms
7,296 KB
testcase_13 AC 769 ms
43,392 KB
testcase_14 AC 122 ms
9,856 KB
testcase_15 AC 143 ms
9,600 KB
testcase_16 AC 595 ms
32,000 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 100 ms
10,240 KB
testcase_19 AC 978 ms
48,128 KB
testcase_20 AC 14 ms
6,940 KB
testcase_21 AC 254 ms
17,152 KB
testcase_22 AC 667 ms
6,940 KB
testcase_23 AC 1,230 ms
60,160 KB
testcase_24 AC 1,248 ms
57,344 KB
testcase_25 AC 1,096 ms
38,656 KB
testcase_26 AC 873 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
#define rep(i, n) for(int i = 0; i < n; i++)

int main() {
	int N, p, q;
	cin >> N >> p >> q;
	vector<int> a(N);
	rep(i, N) cin >> a[i];
	sort(a.begin(), a.end());
	vector<int> v(N);
	rep(i, N) v[i] = pow_mod(5, a[i], p);
	vector<map<int, int>> vmp(N);
	for(int i = N - 1; i >= 0; i--) {
		map<int, int> mp;
		if(i < N - 1) mp = vmp[i + 1];
		mp[v[i]]++;
		vmp[i] = mp;
	}
	int ans = 0;
	rep(i, N) {
		for(int j = i + 1; j < N; j++) {
			for(int k = j + 1; k < N - 1; k++) {
				ll s = pow_mod(10, a[i], p) + pow_mod(9, a[j], p) + pow_mod(7, a[k], p);
				int m = s % p;
				int r = q - m;
				if(m > q) r += p;
				ans += vmp[k + 1][r];
			}
		}
	}
	cout << ans << endl;
}
0