結果

問題 No.2709 1975 Powers
ユーザー yansi819yansi819
提出日時 2024-04-02 13:31:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 3,637 ms
コンパイル使用メモリ 263,720 KB
実行使用メモリ 66,512 KB
最終ジャッジ日時 2024-09-30 23:12:44
合計ジャッジ時間 13,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
66,392 KB
testcase_01 AC 94 ms
66,476 KB
testcase_02 AC 101 ms
66,452 KB
testcase_03 AC 424 ms
66,512 KB
testcase_04 AC 665 ms
66,176 KB
testcase_05 AC 486 ms
66,048 KB
testcase_06 AC 224 ms
66,176 KB
testcase_07 AC 95 ms
66,048 KB
testcase_08 AC 215 ms
66,048 KB
testcase_09 AC 480 ms
66,048 KB
testcase_10 AC 95 ms
66,048 KB
testcase_11 AC 105 ms
66,048 KB
testcase_12 AC 126 ms
66,048 KB
testcase_13 AC 505 ms
66,176 KB
testcase_14 AC 152 ms
66,048 KB
testcase_15 AC 163 ms
66,048 KB
testcase_16 AC 403 ms
66,176 KB
testcase_17 AC 96 ms
66,176 KB
testcase_18 AC 134 ms
66,176 KB
testcase_19 AC 653 ms
66,176 KB
testcase_20 AC 97 ms
66,048 KB
testcase_21 AC 207 ms
66,048 KB
testcase_22 AC 719 ms
66,048 KB
testcase_23 AC 722 ms
66,048 KB
testcase_24 AC 753 ms
66,048 KB
testcase_25 AC 729 ms
66,176 KB
testcase_26 AC 724 ms
66,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:4: warning: built-in function 'pow10' declared as non-function [-Wbuiltin-declaration-mismatch]
    9 | ll pow10[2020202], pow9[2020202], pow7[2020202], pow5[2020202], ans;
      |    ^~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;

int N, P, Q, A[202];
ll pow10[2020202], pow9[2020202], pow7[2020202], pow5[2020202], ans;

int main() {
  cin >> N >> P >> Q;
  for (int i = 0; i < N; i++) cin >> A[i];
  sort(A, A + N);
  pow10[0] = pow9[0] = pow7[0] = pow5[0] = 1;
  for (int i = 1; i <= 2000000; i++) {
    pow10[i] = (pow10[i - 1] * 10) % P;
    pow9[i] = (pow9[i - 1] * 9) % P;
    pow7[i] = (pow7[i - 1] * 7) % P;
    pow5[i] = (pow5[i - 1] * 5) % P;
  }
  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++) {
          int a = A[i], b = A[j], c = A[k], d = A[l];
          if ((pow10[a] + pow9[b] + pow7[c] + pow5[d]) % P == Q) ans++;
        }
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0