結果

問題 No.2709 1975 Powers
ユーザー 259-Momone259-Momone
提出日時 2024-11-01 20:38:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 328,120 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-11-01 20:38:43
合計ジャッジ時間 9,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 9 ms
6,820 KB
testcase_03 AC 32 ms
6,820 KB
testcase_04 AC 241 ms
7,344 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
6,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 3 ms
6,816 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 50 ms
6,820 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 86 ms
6,820 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 182 ms
6,816 KB
testcase_26 AC 67 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/math>
#include <bits/extc++.h>

int main() {
    using namespace std;
    unsigned N, P, Q;
    cin >> N >> P >> Q;

    unordered_map<unsigned, unsigned> dp_0, dp_1, dp_2, dp_3;
    for (unsigned i{}; i < N; i++) {
        unsigned a;
        cin >> a;
        const auto v5{atcoder::pow_mod(5, a, P)};
        for (const auto &[k, v] : dp_2)
            dp_3[(k + v5) % P] += v;
        const auto v7{atcoder::pow_mod(7, a, P)};
        for (const auto &[k, v] : dp_1)
            dp_2[(k + v7) % P] += v;
        const auto v9{atcoder::pow_mod(9, a, P)};
        for (const auto &[k, v] : dp_0)
            dp_1[(k + v9) % P] += v;
        const auto v10{atcoder::pow_mod(10, a, P)};
        dp_0[v10]++;
    }

    cout << dp_3[Q] << endl;
    return 0;
}
0