結果

問題 No.2709 1975 Powers
ユーザー Shota Yamaguchi (0214sh7)Shota Yamaguchi (0214sh7)
提出日時 2024-03-31 14:29:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 966 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 208,436 KB
実行使用メモリ 11,356 KB
最終ジャッジ日時 2024-03-31 14:29:53
合計ジャッジ時間 15,671 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,352 KB
testcase_01 AC 9 ms
11,352 KB
testcase_02 AC 276 ms
11,356 KB
testcase_03 AC 506 ms
11,356 KB
testcase_04 AC 810 ms
11,356 KB
testcase_05 AC 654 ms
11,356 KB
testcase_06 AC 250 ms
11,356 KB
testcase_07 AC 86 ms
11,352 KB
testcase_08 AC 593 ms
11,356 KB
testcase_09 AC 714 ms
11,356 KB
testcase_10 AC 91 ms
11,352 KB
testcase_11 AC 157 ms
11,356 KB
testcase_12 AC 468 ms
11,356 KB
testcase_13 AC 853 ms
11,356 KB
testcase_14 AC 292 ms
11,356 KB
testcase_15 AC 564 ms
11,356 KB
testcase_16 AC 409 ms
11,356 KB
testcase_17 AC 111 ms
11,352 KB
testcase_18 AC 488 ms
11,356 KB
testcase_19 AC 729 ms
11,356 KB
testcase_20 AC 254 ms
11,356 KB
testcase_21 AC 586 ms
11,356 KB
testcase_22 AC 966 ms
11,356 KB
testcase_23 AC 770 ms
11,356 KB
testcase_24 AC 493 ms
11,356 KB
testcase_25 AC 765 ms
11,356 KB
testcase_26 AC 854 ms
11,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

 #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> PP;
// #define MOD 1000000007
#define MOD 998244353
#define INF 2305843009213693951
//#define INF 810114514
#define PI 3.141592653589
#define setdouble setprecision
#define REP(i,n) for(ll i=0;i<(n);++i)
#define OREP(i,n) for(ll i=1;i<=(n);++i)
#define RREP(i,n) for(ll i=(n)-1;i>=0;--i)
#define ORREP(i,n) for(ll i=(n);i>=1;--i)
#define rep(i,a,b) for(ll i=(a);i<=(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define GOODBYE do { cout << "-1" << endl; return 0; } while (false)
#define MM <<" "<<
#define Endl endl
#define debug true
#define debug2 false

long long power(long long b,long long e,long long mod=LLONG_MAX){
    // Copyright (c) 2023 0214sh7
    // https://github.com/0214sh7/library/
    long long r=1;
    while(e){
        if(e&1){
            r=(r*b)%mod;
        }
        b=(b*b)%mod;
        e >>=1;
    }
    return r;
}

int main(void){
    //cin.tie(nullptr);
    //ios::sync_with_stdio(false);
    
    ll N,P,Q;
    cin >> N >> P >> Q;
    vector<ll> A(N);
    REP(i,N){
        cin >> A[i];
    }
    
    sort(ALL(A));

    // dp[i][j][k] := iまで見た、j個取った、mod Pがk
    ll dp[2][5][100100] = {};
    dp[0][0][0] = 1;

    REP(i,N){

        vector<ll> pows(4,1);
        pows[0] = power(10,A[i],P);
        pows[1] = power(9,A[i],P);
        pows[2] = power(7,A[i],P);
        pows[3] = power(5,A[i],P);

        REP(j,5){
            REP(k,P){

                // 取らない
                dp[1][j][k] += dp[0][j][k];

                // 取る
                if(j!=4){
                    dp[1][j+1][(k + pows[j])%P] += dp[0][j][k];
                }

            }
        }
        
        swap(dp[0],dp[1]);
        REP(j,5){REP(k,100100){dp[1][j][k]=0;}}
    }

    ll Ans = dp[0][4][Q];
    cout << Ans << endl;
    
    return 0;
    
}
0