結果

問題 No.2709 1975 Powers
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-03-31 21:30:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 206,064 KB
実行使用メモリ 65,800 KB
最終ジャッジ日時 2024-09-30 21:24:56
合計ジャッジ時間 12,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
65,664 KB
testcase_01 AC 109 ms
65,792 KB
testcase_02 AC 111 ms
65,800 KB
testcase_03 AC 458 ms
65,792 KB
testcase_04 AC 692 ms
65,728 KB
testcase_05 AC 510 ms
65,768 KB
testcase_06 AC 231 ms
65,744 KB
testcase_07 AC 104 ms
65,792 KB
testcase_08 AC 222 ms
65,772 KB
testcase_09 AC 497 ms
65,792 KB
testcase_10 AC 104 ms
65,792 KB
testcase_11 AC 126 ms
65,792 KB
testcase_12 AC 134 ms
65,792 KB
testcase_13 AC 536 ms
65,792 KB
testcase_14 AC 165 ms
65,792 KB
testcase_15 AC 175 ms
65,764 KB
testcase_16 AC 425 ms
65,684 KB
testcase_17 AC 106 ms
65,692 KB
testcase_18 AC 144 ms
65,672 KB
testcase_19 AC 689 ms
65,788 KB
testcase_20 AC 107 ms
65,740 KB
testcase_21 AC 221 ms
65,664 KB
testcase_22 AC 733 ms
65,792 KB
testcase_23 AC 741 ms
65,792 KB
testcase_24 AC 737 ms
65,740 KB
testcase_25 AC 739 ms
65,664 KB
testcase_26 AC 733 ms
65,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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<long long> ten(siz), nine(siz), seven(siz), five(siz);
    ten[0] = nine[0] = seven[0] = five[0] = 1LL;
    for (int i = 1; i < siz; i++) {
        ten[i] = ten[i - 1] * 10LL % p;
        nine[i] = nine[i - 1] * 9LL % p;
        seven[i] = seven[i - 1] * 7LL % p;
        five[i] = five[i - 1] * 5LL % p;
    }
    sort(a.begin(), a.end());
    int 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++) {
                    long long res = (ten[a[i]] + nine[a[j]] + seven[a[k]] + five[a[l]]) % p;
                    if (res == q) {
                        ans++;
                    }
                }
            }
        }
    }
    cout << ans << endl;
}
0