結果
問題 | No.2709 1975 Powers |
ユーザー | yansi819 |
提出日時 | 2024-04-02 13:28:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 4,146 ms |
コンパイル使用メモリ | 263,104 KB |
実行使用メモリ | 9,932 KB |
最終ジャッジ日時 | 2024-09-30 23:12:28 |
合計ジャッジ時間 | 7,665 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
9,932 KB |
testcase_01 | AC | 12 ms
9,808 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
コンパイルメッセージ
main.cpp:9:4: warning: built-in function 'pow10' declared as non-function [-Wbuiltin-declaration-mismatch] 9 | ll pow10[202020], pow9[202020], pow7[202020], pow5[202020], ans; | ^~~~~
ソースコード
#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[202020], pow9[202020], pow7[202020], pow5[202020], 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 <= 200000; 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; }