結果
問題 | No.2709 1975 Powers |
ユーザー | Basin-Bug |
提出日時 | 2024-03-31 14:18:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,093 bytes |
コンパイル時間 | 1,178 ms |
コンパイル使用メモリ | 91,764 KB |
実行使用メモリ | 327,680 KB |
最終ジャッジ日時 | 2024-09-30 19:21:05 |
合計ジャッジ時間 | 6,807 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
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 | TLE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <cmath> using namespace std; int main() { int N, P, Q; cin >> N >> P >> Q; vector<int> A(N); for (int &a : A) cin >> a; vector<vector<vector<int>>> dp(N + 1, vector<vector<int>>(5, vector<int>(P, 0))); dp[0][0][0] = 1; for (int i = 1; i <= N; ++i) { int a = static_cast<int>(pow(10, A[i - 1])) % P; int b = static_cast<int>(pow(9, A[i - 1])) % P; int c = static_cast<int>(pow(7, A[i - 1])) % P; int d = static_cast<int>(pow(5, A[i - 1])) % P; for (int j = 0; j < P; ++j) { dp[i][0][j] += dp[i - 1][0][j]; dp[i][1][(j + a) % P] += dp[i - 1][0][j]; dp[i][1][j] += dp[i - 1][1][j]; dp[i][2][(j + b) % P] += dp[i - 1][1][j]; dp[i][2][j] += dp[i - 1][2][j]; dp[i][3][(j + c) % P] += dp[i - 1][2][j]; dp[i][3][j] += dp[i - 1][3][j]; dp[i][4][(j + d) % P] += dp[i - 1][3][j]; dp[i][4][j] += dp[i - 1][4][j]; } } cout << dp[N][4][Q] << endl; return 0; }