結果

問題 No.2709 1975 Powers
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-03-31 15:42:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 998 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 209,844 KB
実行使用メモリ 81,520 KB
最終ジャッジ日時 2024-09-30 20:54:31
合計ジャッジ時間 26,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
81,308 KB
testcase_01 AC 154 ms
81,380 KB
testcase_02 AC 173 ms
81,376 KB
testcase_03 AC 1,161 ms
81,320 KB
testcase_04 AC 1,780 ms
81,320 KB
testcase_05 AC 1,274 ms
81,384 KB
testcase_06 AC 512 ms
81,384 KB
testcase_07 AC 155 ms
81,340 KB
testcase_08 AC 485 ms
81,320 KB
testcase_09 AC 1,282 ms
81,328 KB
testcase_10 AC 155 ms
81,416 KB
testcase_11 AC 188 ms
81,340 KB
testcase_12 AC 243 ms
81,372 KB
testcase_13 AC 1,324 ms
81,484 KB
testcase_14 AC 326 ms
81,320 KB
testcase_15 AC 352 ms
81,384 KB
testcase_16 AC 1,036 ms
81,384 KB
testcase_17 AC 157 ms
81,308 KB
testcase_18 AC 268 ms
81,408 KB
testcase_19 AC 1,758 ms
81,308 KB
testcase_20 AC 166 ms
81,364 KB
testcase_21 AC 468 ms
81,304 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<long long> v = {10LL, 9LL, 7LL, 5LL};
int siz = 2000010;

int main() {
    int n;
    long long p, q;
    cin >> n >> p >> q;
    vector<long long> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<vector<long long>> mods(4, vector<long long>(siz, 1LL));
    for (int i = 0; i < 4; i++) {
        for (int j = 1; j < siz; j++) {
            mods[i][j] = mods[i][j - 1] * v[i] % p;
        }
    }
    sort(a.begin(), a.end());
    int ans = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            for (int k = 0; k < n; k++) {
                for (int l = 0; l < n; l++) {
                    if (i < j && j < k && k < l) {
                        if ((mods[0][a[i]] + mods[1][a[j]] + mods[2][a[k]] + mods[3][a[l]]) % p == q) {
                            ans++;
                        }
                    }
                }
            }
        }
    }
    cout << ans << endl;
}
0