結果

問題 No.2709 1975 Powers
ユーザー forest3forest3
提出日時 2024-07-12 17:25:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 184,792 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-07-12 17:26:00
合計ジャッジ時間 11,324 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 14 ms
5,376 KB
testcase_03 AC 292 ms
5,376 KB
testcase_04 AC 483 ms
12,800 KB
testcase_05 AC 511 ms
21,888 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 94 ms
7,680 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 5 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 627 ms
6,144 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 852 ms
32,512 KB
testcase_26 AC 661 ms
14,336 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;
				if(m > q) continue;
				int r = q - m;
				ans += vmp[k + 1][r];
			}
		}
	}
	cout << ans << endl;
}


0