結果

問題 No.2709 1975 Powers
ユーザー traindoggotraindoggo
提出日時 2024-03-31 16:35:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 1,845 bytes
コンパイル時間 3,317 ms
コンパイル使用メモリ 252,068 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-31 16:36:08
合計ジャッジ時間 10,816 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 6 ms
6,676 KB
testcase_03 AC 345 ms
6,676 KB
testcase_04 AC 572 ms
6,676 KB
testcase_05 AC 388 ms
6,676 KB
testcase_06 AC 121 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 111 ms
6,676 KB
testcase_09 AC 386 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 12 ms
6,676 KB
testcase_12 AC 31 ms
6,676 KB
testcase_13 AC 406 ms
6,676 KB
testcase_14 AC 57 ms
6,676 KB
testcase_15 AC 65 ms
6,676 KB
testcase_16 AC 305 ms
6,676 KB
testcase_17 AC 2 ms
6,676 KB
testcase_18 AC 39 ms
6,676 KB
testcase_19 AC 561 ms
6,676 KB
testcase_20 AC 5 ms
6,676 KB
testcase_21 AC 109 ms
6,676 KB
testcase_22 AC 675 ms
6,676 KB
testcase_23 AC 682 ms
6,676 KB
testcase_24 AC 674 ms
6,676 KB
testcase_25 AC 677 ms
6,676 KB
testcase_26 AC 676 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef DEBUG_
#include <compe/debug.hpp>
#else
#define dump(...)
#endif

// clang-format off
struct  Fast{Fast(){std::cin.tie(0);ios::sync_with_stdio(false);}} fast;

#define rep(i,n) for (int i=0; i<(int)n; ++i)
#define rrep(i,a,n) for (int i=a; i<(int)n; ++i)
#define out(msg) cout << (msg) << '\n'
#define die(msg) do{ cout << (msg) << endl,exit(0); }while(0)
#define el '\n'

#define all(k)  k.begin(),  k.end()
#define rall(k) k.rbegin(), k.rend()

// const
#define INFi  1   << 30
#define INFll 1LL << 60
#define MOD17 10'0000'0007
#define MOD98  9'9824'4353

// alias
using ullint = unsigned long long int;
using llint  = long long int;

template <typename T> inline bool chmax(T& a, const T& b) {
  return ((a < b) ? (a = b, true) : false);
}
template <typename T> inline bool chmin(T& a, const T& b) {
  return ((a > b) ? (a = b, true) : false);
}
// clang-format on

llint modpow(llint x, llint n, llint mod) {
  x = x % mod;

  if (n == 0)
    return 1;

  else if (n % 2 == 1)
    return (x * modpow(x, n - 1, mod)) % mod;

  else
    return modpow((x * x) % mod, n / 2, mod) % mod;
}

int main() {
  llint n, p, q;
  cin >> n >> p >> q;

  vector<llint> ai(n);
  rep(i, n) cin >> ai[i];
  sort(all(ai));
  dump(ai);

  vector<llint> ten(n), nine(n), seven(n), five(n);
  rep(i, n) {
    ten[i] = modpow(10, ai[i], p);
    nine[i] = modpow(9, ai[i], p);
    seven[i] = modpow(7, ai[i], p);
    five[i] = modpow(5, ai[i], p);
  }

  // TLE :smile:
  int cnt{};

  for (int i = 0; i < n; ++i) {
    for (int j = i + 1; j < n; ++j) {
      for (int k = j + 1; k < n; ++k) {
        for (int l = k + 1; l < n; ++l) {
          llint ans = ten[i] + nine[j] + seven[k] + five[l];
          if (ans % p == q) {
            cnt++;
          }
        }
      }
    }
  }
  cout << cnt << el;
}
0