結果

問題 No.2709 1975 Powers
ユーザー ooaiuooaiu
提出日時 2024-07-04 03:12:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 845 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 4,983 ms
コンパイル使用メモリ 315,596 KB
実行使用メモリ 190,828 KB
最終ジャッジ日時 2024-07-04 03:13:17
合計ジャッジ時間 18,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
190,704 KB
testcase_01 AC 189 ms
190,680 KB
testcase_02 AC 194 ms
190,816 KB
testcase_03 AC 571 ms
190,592 KB
testcase_04 AC 794 ms
190,588 KB
testcase_05 AC 612 ms
190,756 KB
testcase_06 AC 307 ms
190,596 KB
testcase_07 AC 191 ms
190,724 KB
testcase_08 AC 296 ms
190,724 KB
testcase_09 AC 609 ms
190,752 KB
testcase_10 AC 194 ms
190,588 KB
testcase_11 AC 199 ms
190,828 KB
testcase_12 AC 210 ms
190,684 KB
testcase_13 AC 622 ms
190,780 KB
testcase_14 AC 249 ms
190,828 KB
testcase_15 AC 255 ms
190,756 KB
testcase_16 AC 515 ms
190,712 KB
testcase_17 AC 193 ms
190,584 KB
testcase_18 AC 228 ms
190,752 KB
testcase_19 AC 791 ms
190,620 KB
testcase_20 AC 194 ms
190,592 KB
testcase_21 AC 299 ms
190,712 KB
testcase_22 AC 843 ms
190,772 KB
testcase_23 AC 811 ms
190,584 KB
testcase_24 AC 832 ms
190,732 KB
testcase_25 AC 845 ms
190,648 KB
testcase_26 AC 832 ms
190,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#ifdef LOCAL
#include <algo/debug.h>
#else
#define debug(...) void(0)
#endif
#include<atcoder/all>
using namespace atcoder;
ll modpow(ll a, ll b, ll m) {
    ll ret = 1;
    while(b) {
        if(b & 1) (ret *= a) % m;
        (a *= a) % m;
        b >>= 1;
    }
    return ret;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll N, P, Q; cin >> N >> P >> Q;
    vector<ll> A(N); for(int i = 0; i < N; i++) cin >> A[i];
    sort(A.begin(), A.end());
    const ll n = 2 * 1'000'000;
    vector<vector<ll>> rec(11, vector<ll>(n + 1, 1));
    for(int i : {5, 7, 9, 10}) {
        for(int j = 0; j < n; j++) {
            rec[i][j + 1] = (rec[i][j] * i) % P;
        }
    }
    ll 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++) {
                for(int l = k + 1; l < N; l++) {
                    ll t = rec[10][A[i]] + rec[9][A[j]] + rec[7][A[k]] + rec[5][A[l]]; t %= P;
                    if(t == Q) ans++;
                }
            }
        }
    }
    cout << ans << endl;
}
0