結果

問題 No.2709 1975 Powers
ユーザー littlegirl112littlegirl112
提出日時 2024-03-31 13:41:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 206,984 KB
実行使用メモリ 65,872 KB
最終ジャッジ日時 2024-09-30 18:14:40
合計ジャッジ時間 12,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
65,728 KB
testcase_01 AC 102 ms
65,792 KB
testcase_02 AC 111 ms
65,664 KB
testcase_03 AC 450 ms
65,708 KB
testcase_04 AC 675 ms
65,704 KB
testcase_05 AC 485 ms
65,688 KB
testcase_06 AC 232 ms
65,688 KB
testcase_07 AC 100 ms
65,788 KB
testcase_08 AC 218 ms
65,732 KB
testcase_09 AC 486 ms
65,688 KB
testcase_10 AC 101 ms
65,756 KB
testcase_11 AC 111 ms
65,688 KB
testcase_12 AC 130 ms
65,688 KB
testcase_13 AC 500 ms
65,712 KB
testcase_14 AC 161 ms
65,600 KB
testcase_15 AC 171 ms
65,748 KB
testcase_16 AC 410 ms
65,568 KB
testcase_17 AC 101 ms
65,772 KB
testcase_18 AC 139 ms
65,792 KB
testcase_19 AC 655 ms
65,872 KB
testcase_20 AC 102 ms
65,792 KB
testcase_21 AC 214 ms
65,780 KB
testcase_22 AC 709 ms
65,704 KB
testcase_23 AC 707 ms
65,704 KB
testcase_24 AC 706 ms
65,708 KB
testcase_25 AC 705 ms
65,792 KB
testcase_26 AC 707 ms
65,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
template <class T = ll>
using vc = vector<T>;
template <class T = ll>
using vvc = vc<vc<T>>;
void solve();
int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);
    ll t = 1;
    // cin >> t;
    for (int i = 1; i <= t; i++) solve();
    return 0;
}
#define rep(i, a, b) for (ll i = (a); i < (b); i++)
ll dy[4] = {0, 1, 0, -1}, dx[4] = {1, 0, -1, 0};
void solve() {
    ll n, p, q;
    cin >> n >> p >> q;
    vc<ll> a(n);
    rep(i, 0, n) cin >> a[i];
    sort(a.begin(), a.end());
    const ll N = 2e6;
    vc<ll> pow10(N + 1), pow9(N + 1), pow7(N + 1), pow5(N + 1);
    pow10[0] = 1, pow9[0] = 1, pow7[0] = 1, pow5[0] = 1;
    rep(i, 1, N + 1) {
        pow10[i] = pow10[i - 1] * 10 % p;
        pow9[i] = pow9[i - 1] * 9 % p;
        pow7[i] = pow7[i - 1] * 7 % p;
        pow5[i] = pow5[i - 1] * 5 % p;
    }
    ll res = 0;
    rep(i, 0, n) rep(j, i + 1, n) rep(k, j + 1, n) rep(l, k + 1, n) {
        ll num = pow10[a[i]] + pow9[a[j]] + pow7[a[k]] + pow5[a[l]];
        if (num % p == q) res++;
    }
    cout << res << endl;
}
0