結果

問題 No.2709 1975 Powers
ユーザー umezoumezo
提出日時 2024-03-31 14:27:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 1,006 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 255,300 KB
実行使用メモリ 223,832 KB
最終ジャッジ日時 2024-09-30 19:34:07
合計ジャッジ時間 11,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
81,312 KB
testcase_01 AC 155 ms
81,316 KB
testcase_02 AC 194 ms
112,724 KB
testcase_03 AC 308 ms
199,508 KB
testcase_04 AC 406 ms
217,352 KB
testcase_05 AC 342 ms
203,492 KB
testcase_06 AC 279 ms
169,012 KB
testcase_07 AC 166 ms
81,488 KB
testcase_08 AC 282 ms
166,740 KB
testcase_09 AC 368 ms
203,480 KB
testcase_10 AC 167 ms
82,260 KB
testcase_11 AC 209 ms
122,068 KB
testcase_12 AC 230 ms
138,576 KB
testcase_13 AC 381 ms
205,012 KB
testcase_14 AC 254 ms
151,000 KB
testcase_15 AC 251 ms
154,192 KB
testcase_16 AC 341 ms
195,668 KB
testcase_17 AC 179 ms
95,440 KB
testcase_18 AC 241 ms
143,184 KB
testcase_19 AC 402 ms
216,792 KB
testcase_20 AC 194 ms
107,220 KB
testcase_21 AC 280 ms
165,844 KB
testcase_22 AC 354 ms
223,700 KB
testcase_23 AC 437 ms
223,832 KB
testcase_24 AC 421 ms
223,828 KB
testcase_25 AC 429 ms
223,704 KB
testcase_26 AC 390 ms
223,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>; //B(n,V<int>(n))
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,p,q;
  cin>>n>>p>>q;
  V<ll> A(n);
  rep(i,n) cin>>A[i];
  sort(ALL(A));
  
  VV<ll> B(4,V<ll>(2002002));
  rep(i,4) B[i][0]=1;
  rep(j,2002000) B[0][j+1]=B[0][j]*10%p;
  rep(j,2002000) B[1][j+1]=B[1][j]*9%p;
  rep(j,2002000) B[2][j+1]=B[2][j]*7%p;
  rep(j,2002000) B[3][j+1]=B[3][j]*5%p;
  
  VV<ll> C(n+1,V<ll>(100100));
  for(int i=n-1;i>=0;i--){
    for(int j=0;j<100100;j++){
      C[i][j]=C[i+1][j];
    }
    C[i][B[3][A[i]]]++;
  }
  
  ll ans=0;
  for(int a=0;a<n-1;a++){
    for(int b=a+1;b<n-1;b++){
      for(int c=b+1;c<n-1;c++){
        ll tmp=(B[0][A[a]]+B[1][A[b]]+B[2][A[c]])%p;
        ans+=C[c+1][(q-tmp+p)%p];
      }
    }
  }
  cout<<ans<<endl;
  
    
  return 0;
}
0