結果

問題 No.2709 1975 Powers
ユーザー MMMM
提出日時 2024-03-31 13:56:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 1,225 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 230,984 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-30 18:39:39
合計ジャッジ時間 8,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
34,560 KB
testcase_01 AC 46 ms
34,560 KB
testcase_02 AC 48 ms
34,560 KB
testcase_03 AC 174 ms
34,560 KB
testcase_04 AC 257 ms
34,432 KB
testcase_05 AC 187 ms
34,432 KB
testcase_06 AC 92 ms
34,432 KB
testcase_07 AC 49 ms
34,432 KB
testcase_08 AC 86 ms
34,560 KB
testcase_09 AC 188 ms
34,560 KB
testcase_10 AC 51 ms
34,432 KB
testcase_11 AC 52 ms
34,560 KB
testcase_12 AC 57 ms
34,560 KB
testcase_13 AC 193 ms
34,560 KB
testcase_14 AC 68 ms
34,432 KB
testcase_15 AC 71 ms
34,560 KB
testcase_16 AC 162 ms
34,560 KB
testcase_17 AC 48 ms
34,560 KB
testcase_18 AC 60 ms
34,560 KB
testcase_19 AC 250 ms
34,560 KB
testcase_20 AC 49 ms
34,560 KB
testcase_21 AC 86 ms
34,432 KB
testcase_22 AC 290 ms
34,432 KB
testcase_23 AC 292 ms
34,432 KB
testcase_24 AC 293 ms
34,432 KB
testcase_25 AC 299 ms
34,432 KB
testcase_26 AC 292 ms
34,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
#define ld long double
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
const ll mod = 998244353;
// using Graph = vector<vector<pair<int,int>>>;
using Graph = vector<vector<int>>;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

int main(){
  // input
  int N,P,Q; cin >> N >> P >> Q;
  vector<int> A(N);
  for(int i = 0; i < N; i++){
    cin >> A[i];
  }
  // prep
  const int M = int(2e6+1);
  sort(A.begin(),A.end());
  vector<int> t(M,1), n(M,1), s(M,1), f(M,1);
  for(int i = 0; i < M; i++){
    t[i+1] = (t[i] * 10) % P;
    n[i+1] = (n[i] * 9) % P;
    s[i+1] = (s[i] * 7) % P;
    f[i+1] = (f[i] * 5) % P;
  }
  
  // solve
  int ans = 0;
  for(int i = 0; i < N; i++){
    for(int j = i+1; j < N; j++){
      if(A[i] == A[j]) continue;
      for(int k = j+1; k < N; k++){
        if(A[k] == A[j]) continue;
        for(int l = k+1; l < N; l++){
          if(A[k] == A[l]) continue;
          
          int tmp = t[A[i]] + n[A[j]] + s[A[k]] + f[A[l]];
          if(tmp % P == Q) ans++;
        }
      }
    }
  }
  
  cout << ans << endl;
}
0