結果

問題 No.2709 1975 Powers
ユーザー namahamu0909namahamu0909
提出日時 2024-11-01 20:39:40
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 1,654 bytes
コンパイル時間 6,942 ms
コンパイル使用メモリ 338,792 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-01 20:40:01
合計ジャッジ時間 14,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 8 ms
6,820 KB
testcase_03 AC 376 ms
6,816 KB
testcase_04 AC 624 ms
6,820 KB
testcase_05 AC 422 ms
6,816 KB
testcase_06 AC 136 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 124 ms
6,816 KB
testcase_09 AC 423 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 14 ms
6,816 KB
testcase_12 AC 36 ms
6,820 KB
testcase_13 AC 443 ms
6,816 KB
testcase_14 AC 64 ms
6,820 KB
testcase_15 AC 74 ms
6,816 KB
testcase_16 AC 337 ms
6,820 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 45 ms
6,820 KB
testcase_19 AC 613 ms
6,820 KB
testcase_20 AC 6 ms
6,820 KB
testcase_21 AC 120 ms
6,816 KB
testcase_22 AC 730 ms
6,816 KB
testcase_23 AC 729 ms
6,816 KB
testcase_24 AC 729 ms
6,820 KB
testcase_25 AC 731 ms
6,816 KB
testcase_26 AC 754 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
const ll INF=9e18;

ll ruijo(ll kazu, ll jo, ll P){
    bitset<24>bit(jo);
    ll goukei=1;
    ll ima=kazu;
    for (ll a = 0; a < 24; a++){
        if(bit.test(a)){
            goukei*=ima;
            goukei%=P;
        }
        ima*=ima;
        ima%=P;

    }
    return goukei;

}

int main() {
    ll N,P,Q;
    cin>>N>>P>>Q;
    vector<ll> A (N);
    for (ll a = 0; a < N; a++){
        cin>>A[a];
    }
    sort(A.begin(),A.end());
    vector<ll> ten (N);
    vector<ll> nine (N);
    vector<ll> seven (N);
    vector<ll> five (N);
    for (ll a = 0; a < N; a++){
        ten[a]=ruijo(10,A[a],P);
    }
    for (ll a = 0; a < N; a++){
        nine[a]=ruijo(9,A[a],P);
    }
    for (ll a = 0; a < N; a++){
        seven[a]=ruijo(7,A[a],P);
    }
    for (ll a = 0; a < N; a++){
        five[a]=ruijo(5,A[a],P);
    }
    ll kotae=0;
    for (ll a = 0; a < N-3; a++){
        for (ll b = a+1; b < N-2; b++){
            for (ll c = b+1; c < N-1; c++){
                for (ll d = c+1; d < N; d++){
                    //cout<<A[a]<<A[b]<<A[c]<<A[d]<<endl;
                    ll nya=ten[a];
                    //cout<<nya<<endl;
                    nya%=P;
                    nya+=nine[b];
                    nya%=P;
                    nya+=seven[c];
                    nya%=P;
                    nya+=five[d];
                    nya%=P;
                    if(nya==Q){
                        kotae++;
                    }
                }
            }
        }
    }
    cout<<kotae;
}
0