結果

問題 No.2709 1975 Powers
ユーザー a1048576a1048576
提出日時 2024-04-07 13:02:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 176,400 KB
実行使用メモリ 208,740 KB
最終ジャッジ日時 2024-10-01 04:27:09
合計ジャッジ時間 7,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
65,736 KB
testcase_01 AC 100 ms
65,676 KB
testcase_02 AC 146 ms
108,164 KB
testcase_03 AC 188 ms
136,212 KB
testcase_04 AC 278 ms
185,964 KB
testcase_05 AC 225 ms
161,472 KB
testcase_06 AC 143 ms
95,928 KB
testcase_07 AC 115 ms
78,924 KB
testcase_08 AC 208 ms
155,524 KB
testcase_09 AC 251 ms
171,308 KB
testcase_10 AC 115 ms
79,960 KB
testcase_11 AC 125 ms
85,828 KB
testcase_12 AC 175 ms
137,832 KB
testcase_13 AC 267 ms
195,280 KB
testcase_14 AC 150 ms
104,912 KB
testcase_15 AC 196 ms
151,728 KB
testcase_16 AC 187 ms
120,200 KB
testcase_17 AC 119 ms
81,232 KB
testcase_18 AC 180 ms
140,908 KB
testcase_19 AC 260 ms
173,040 KB
testcase_20 AC 141 ms
104,932 KB
testcase_21 AC 203 ms
154,768 KB
testcase_22 AC 268 ms
208,740 KB
testcase_23 AC 275 ms
178,896 KB
testcase_24 AC 233 ms
132,028 KB
testcase_25 AC 272 ms
174,896 KB
testcase_26 AC 271 ms
188,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
  int n,mod,f;
  cin >> n >> mod >> f;
  vector<int> a(n);
  vector<int> p(2e6+1,1), q(2e6+1,1), r(2e6+1,1), s(2e6+1,1);
  for(int i = 0; i < 2e6; i++) {
    p[i+1] = p[i]*10%mod;
    q[i+1] = q[i]*9%mod;
    r[i+1] = r[i]*7%mod;
    s[i+1] = s[i]*5%mod;
  }
  for(int i = 0; i < n; i++) cin >> a[i];
  sort(a.begin(),a.end());
  vector<vector<int>> g(n+1,vector<int>(mod,0));
  for(int i = n-1; i >= 0; i--) {
    g[i][s[a[i]]]++;
    for(int j = 0; j < mod; j++) g[i][j]+=g[i+1][j];
  }
  int ans = 0;
  for(int i = 0; i < n; i++) for(int j = i+1; j < n; j++) for(int k = j+1; k < n; k++) {
    int x = (f-p[a[i]]-q[a[j]]-r[a[k]]+mod*mod)%mod;
    ans+=g[k+1][x];
  }
  cout << ans << endl;
}
0