結果

問題 No.2709 1975 Powers
ユーザー ooaiuooaiu
提出日時 2024-07-04 03:11:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 966 ms / 2,000 ms
コード長 1,025 bytes
コンパイル時間 5,411 ms
コンパイル使用メモリ 315,516 KB
実行使用メモリ 190,820 KB
最終ジャッジ日時 2024-07-04 03:11:32
合計ジャッジ時間 21,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
190,728 KB
testcase_01 AC 264 ms
190,800 KB
testcase_02 AC 295 ms
190,664 KB
testcase_03 AC 642 ms
190,660 KB
testcase_04 AC 869 ms
190,736 KB
testcase_05 AC 674 ms
190,716 KB
testcase_06 AC 410 ms
190,720 KB
testcase_07 AC 259 ms
190,656 KB
testcase_08 AC 369 ms
190,684 KB
testcase_09 AC 706 ms
190,660 KB
testcase_10 AC 263 ms
190,760 KB
testcase_11 AC 272 ms
190,644 KB
testcase_12 AC 319 ms
190,716 KB
testcase_13 AC 696 ms
190,736 KB
testcase_14 AC 312 ms
190,752 KB
testcase_15 AC 350 ms
190,616 KB
testcase_16 AC 571 ms
190,680 KB
testcase_17 AC 267 ms
190,680 KB
testcase_18 AC 327 ms
190,740 KB
testcase_19 AC 889 ms
190,764 KB
testcase_20 AC 297 ms
190,620 KB
testcase_21 AC 377 ms
190,764 KB
testcase_22 AC 954 ms
190,812 KB
testcase_23 AC 956 ms
190,720 KB
testcase_24 AC 943 ms
190,760 KB
testcase_25 AC 957 ms
190,820 KB
testcase_26 AC 966 ms
190,596 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;

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; i <= 10; i++) {
        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