結果
問題 | No.1066 #いろいろな色 / Red and Blue and more various colors (Easy) |
ユーザー | le_panda_noir |
提出日時 | 2020-06-20 21:10:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,225 bytes |
コンパイル時間 | 607 ms |
コンパイル使用メモリ | 69,392 KB |
実行使用メモリ | 320,292 KB |
最終ジャッジ日時 | 2024-07-03 17:34:46 |
合計ジャッジ時間 | 13,475 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | MLE | - |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | AC | 135 ms
45,056 KB |
testcase_17 | AC | 146 ms
51,200 KB |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | MLE | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | TLE | - |
testcase_26 | MLE | - |
ソースコード
#include <iostream> using namespace std; void ins() {} template<class T,class... Rest>void ins(T& v,Rest&... rest){cin>>v;ins(rest...);} #define rep(i,n) for(int i=0,_i=(n);i<_i;++i) template<int MOD> struct MInt { long long val; constexpr MInt(long long val = 0) : val(val % MOD) { if (val < 0) val += MOD; } MInt operator+(const MInt& n) const { return MInt(val) += n; } MInt operator*(const MInt& n) const { return MInt(val) *= n; } MInt& operator+=(const MInt& n) { val = (val + n.val) % MOD; return *this; } MInt& operator*=(const MInt& n) { val = (val * n.val) % MOD; return *this; } friend ostream& operator<<(ostream& os, const MInt& n) { os<<n.val; return os; } }; using mint = MInt<998244353>; int N, Q; int A[6000]; mint dp[6000][6000]; bool visited[6000][6000]; mint dfs(int i, int candidate) { if (N-i < candidate) return 0; if (i == N) return candidate == 0; if (visited[i][candidate]) return dp[i][candidate]; visited[i][candidate] = true; return dp[i][candidate] = dfs(i+1, candidate-1) + dfs(i+1, candidate) * (A[i]-1); } int main() { ins(N, Q); rep(i, N) { cin >> A[i]; } rep(q, Q) { int B; cin >> B; cout << dfs(0, B) << endl; } return 0; }