結果

問題 No.2709 1975 Powers
ユーザー ynishi2015ynishi2015
提出日時 2024-03-31 14:55:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 1,279 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 81,568 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-09-30 20:06:37
合計ジャッジ時間 6,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,632 KB
testcase_01 AC 111 ms
39,408 KB
testcase_02 AC 105 ms
39,672 KB
testcase_03 AC 202 ms
40,356 KB
testcase_04 AC 265 ms
40,316 KB
testcase_05 AC 212 ms
40,028 KB
testcase_06 AC 142 ms
40,412 KB
testcase_07 AC 110 ms
40,280 KB
testcase_08 AC 138 ms
39,212 KB
testcase_09 AC 219 ms
39,360 KB
testcase_10 AC 112 ms
40,144 KB
testcase_11 AC 111 ms
40,116 KB
testcase_12 AC 120 ms
39,488 KB
testcase_13 AC 217 ms
40,236 KB
testcase_14 AC 127 ms
39,832 KB
testcase_15 AC 128 ms
39,496 KB
testcase_16 AC 192 ms
39,672 KB
testcase_17 AC 113 ms
39,440 KB
testcase_18 AC 121 ms
40,480 KB
testcase_19 AC 258 ms
40,620 KB
testcase_20 AC 111 ms
39,340 KB
testcase_21 AC 138 ms
39,692 KB
testcase_22 AC 287 ms
41,252 KB
testcase_23 AC 285 ms
39,280 KB
testcase_24 AC 286 ms
40,352 KB
testcase_25 AC 285 ms
39,056 KB
testcase_26 AC 288 ms
39,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

std::vector<int> ints(int size) {
    std::vector<int> result(size);
    for (int& i : result) {
        std::cin >> i;
    }
    return result;
}

int main() {
    int N, P, Q;
    std::cin >> N >> P >> Q;
    std::vector<int> A = ints(N);
    std::sort(A.begin(), A.end());

    const int AMAX = 2000010;
    std::vector<int> n10(1, 1), n9(1, 1), n7(1, 1), n5(1, 1);

    int p = 1;
    for (int i = 0; i < AMAX; ++i) {
        p = (p * 10) % P;
        n10.push_back(p);
    }

    p = 1;
    for (int i = 0; i < AMAX; ++i) {
        p = (p * 9) % P;
        n9.push_back(p);
    }

    p = 1;
    for (int i = 0; i < AMAX; ++i) {
        p = (p * 7) % P;
        n7.push_back(p);
    }

    p = 1;
    for (int i = 0; i < AMAX; ++i) {
        p = (p * 5) % P;
        n5.push_back(p);
    }

    int cnt = 0;
    for (int a = 0; a < N; ++a) {
        for (int b = a + 1; b < N; ++b) {
            for (int c = b + 1; c < N; ++c) {
                for (int d = c + 1; d < N; ++d) {
                    if ((n10[A[a]] + n9[A[b]] + n7[A[c]] + n5[A[d]]) % P == Q) {
                        ++cnt;
                    }
                }
            }
        }
    }

    std::cout << cnt << std::endl;

    return 0;
}
0