結果

問題 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  
実行時間 824 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 207,660 KB
実行使用メモリ 11,416 KB
最終ジャッジ日時 2024-09-30 19:36:43
合計ジャッジ時間 13,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,388 KB
testcase_01 AC 6 ms
11,260 KB
testcase_02 AC 240 ms
11,416 KB
testcase_03 AC 439 ms
11,260 KB
testcase_04 AC 703 ms
11,168 KB
testcase_05 AC 572 ms
11,228 KB
testcase_06 AC 220 ms
11,268 KB
testcase_07 AC 75 ms
11,368 KB
testcase_08 AC 516 ms
11,204 KB
testcase_09 AC 621 ms
11,332 KB
testcase_10 AC 79 ms
11,340 KB
testcase_11 AC 139 ms
11,312 KB
testcase_12 AC 408 ms
11,252 KB
testcase_13 AC 738 ms
11,108 KB
testcase_14 AC 252 ms
11,156 KB
testcase_15 AC 485 ms
11,224 KB
testcase_16 AC 356 ms
11,272 KB
testcase_17 AC 96 ms
11,320 KB
testcase_18 AC 426 ms
11,252 KB
testcase_19 AC 634 ms
11,308 KB
testcase_20 AC 222 ms
11,316 KB
testcase_21 AC 511 ms
11,128 KB
testcase_22 AC 824 ms
11,236 KB
testcase_23 AC 685 ms
11,312 KB
testcase_24 AC 444 ms
11,344 KB
testcase_25 AC 653 ms
11,124 KB
testcase_26 AC 717 ms
11,304 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