結果

問題 No.2709 1975 Powers
ユーザー Nzt3Nzt3
提出日時 2024-03-31 14:17:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 213,048 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-09-30 19:17:10
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 66 ms
6,820 KB
testcase_04 AC 200 ms
6,820 KB
testcase_05 AC 118 ms
6,816 KB
testcase_06 AC 67 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 85 ms
8,704 KB
testcase_09 AC 165 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 9 ms
6,820 KB
testcase_12 AC 28 ms
6,820 KB
testcase_13 AC 223 ms
9,216 KB
testcase_14 AC 32 ms
6,816 KB
testcase_15 AC 36 ms
6,820 KB
testcase_16 AC 118 ms
6,816 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 43 ms
8,064 KB
testcase_19 AC 258 ms
7,808 KB
testcase_20 AC 7 ms
6,816 KB
testcase_21 AC 83 ms
8,576 KB
testcase_22 AC 88 ms
6,816 KB
testcase_23 AC 311 ms
7,680 KB
testcase_24 AC 263 ms
6,816 KB
testcase_25 AC 195 ms
6,820 KB
testcase_26 AC 156 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
ll MOD;
namespace Lib{
  ll modpow(ll a,ll n){
    long long ret=1,t=a;
    while(n>0){
      if(n&1)ret=ret*t%MOD;
      t=t*t%MOD;
      n/=2;
    }
    return ret;
  }
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  ll N,P,Q;
  cin>>N>>P>>Q;
  MOD=P;
  vector A(N,0);
  for(int &i:A)cin>>i;
  sort(A.begin(),A.end());
  map<ll,int>cnt;
  ll ans=0;
  vector pow10(N,0),pow9(N,0),pow7(N,0);
  for(int i=0;i<N;i++){
    pow10[i]=Lib::modpow(10,A[i]);
    pow9[i]=Lib::modpow(9,A[i]);
    pow7[i]=Lib::modpow(7,A[i]);
  }
  for(int c=N-1;c>=0;c--){
    for(int a=0;a<c;a++){
      for(int b=a+1;b<c;b++){
        ll x=pow10[a]+pow9[b]+pow7[c];
        ans+=cnt[((Q-x)%P+P)%P];
      }
    }
    cnt[Lib::modpow(5,A[c])]+=1;
  }
  cout<<ans<<'\n';
}
0