結果

問題 No.2709 1975 Powers
ユーザー anago-pieanago-pie
提出日時 2024-04-09 15:32:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 207,132 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 17:51:02
合計ジャッジ時間 8,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 294 ms
5,248 KB
testcase_04 AC 502 ms
5,248 KB
testcase_05 AC 329 ms
5,248 KB
testcase_06 AC 103 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 95 ms
5,248 KB
testcase_09 AC 330 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 10 ms
5,248 KB
testcase_12 AC 26 ms
5,248 KB
testcase_13 AC 344 ms
5,248 KB
testcase_14 AC 48 ms
5,248 KB
testcase_15 AC 55 ms
5,248 KB
testcase_16 AC 259 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 33 ms
5,248 KB
testcase_19 AC 478 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 91 ms
5,248 KB
testcase_22 AC 579 ms
5,248 KB
testcase_23 AC 577 ms
5,248 KB
testcase_24 AC 579 ms
5,248 KB
testcase_25 AC 610 ms
5,248 KB
testcase_26 AC 586 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0; i<n; i++)
#define debug 0
#define YES cout << "Yes" << endl;
#define NO cout << "No" << endl;
using ll = long long;
using ld = long double;
const int mod = 998244353;
const int MOD = 1000000007;
const double pi = atan2(0, -1);
#include <time.h>
#include <chrono>

ll modpow(ll x, int y, int m) {
	if (y == 0) {
		return 1;
	}
	if (y % 2 == 0) {
		ll t = modpow(x, y / 2, m);
		return (t * t) % m;
	}
	else {
		return (modpow(x, y - 1, m) * x) % m;
	}
}

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<ll> mi(N), mj(N), mk(N), ml(N);
	rep(i, N) {
		mi[i] = modpow(10, A[i], P);
		mj[i] = modpow(9, A[i], P);
		mk[i] = modpow(7, A[i], P);
		ml[i] = modpow(5, A[i], P);
	}

	int ans = 0;

	rep(i, N) {
		for (int j = i + 1; j < N; j++) {
			for (int k = j + 1; k < N; k++) {
				for (int l = k + 1; l < N; l++) {
					if ((mi[i] + mj[j] + mk[k] + ml[l]) % P == Q) {
						ans++;
					}
				}
			}
		}
	}

	cout << ans << endl;
}
0