結果

問題 No.2709 1975 Powers
ユーザー Shota Yamaguchi (0214sh7)Shota Yamaguchi (0214sh7)
提出日時 2024-03-31 14:28:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,890 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 205,364 KB
実行使用メモリ 11,356 KB
最終ジャッジ日時 2024-03-31 14:28:27
合計ジャッジ時間 15,179 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,352 KB
testcase_01 AC 8 ms
11,352 KB
testcase_02 AC 267 ms
11,356 KB
testcase_03 AC 487 ms
11,356 KB
testcase_04 AC 778 ms
11,356 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 82 ms
11,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 87 ms
11,352 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 280 ms
11,356 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 929 ms
11,356 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 751 ms
11,356 KB
testcase_26 AC 794 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];
    }


    // 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