結果
問題 | No.1189 Sum is XOR |
ユーザー | square1001 |
提出日時 | 2020-08-22 13:17:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,905 bytes |
コンパイル時間 | 581 ms |
コンパイル使用メモリ | 70,720 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 07:29:20 |
合計ジャッジ時間 | 4,003 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
5,248 KB |
testcase_01 | AC | 63 ms
5,248 KB |
testcase_02 | AC | 64 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | AC | 31 ms
5,248 KB |
testcase_12 | AC | 67 ms
5,248 KB |
testcase_13 | AC | 59 ms
5,248 KB |
testcase_14 | AC | 46 ms
5,248 KB |
testcase_15 | AC | 34 ms
5,248 KB |
testcase_16 | AC | 29 ms
5,248 KB |
testcase_17 | AC | 33 ms
5,248 KB |
testcase_18 | AC | 39 ms
5,248 KB |
testcase_19 | AC | 54 ms
5,248 KB |
testcase_20 | AC | 54 ms
5,248 KB |
testcase_21 | AC | 25 ms
5,248 KB |
testcase_22 | AC | 25 ms
5,248 KB |
ソースコード
#ifndef CLASS_MODINT #define CLASS_MODINT #include <cstdint> template <std::uint32_t mod> class modint { private: std::uint32_t n; public: modint() : n(0) {}; modint(std::int64_t n_) : n((n_ >= 0 ? n_ : mod - (-n_) % mod) % mod) {}; static constexpr std::uint32_t get_mod() { return mod; } std::uint32_t get() const { return n; } bool operator==(const modint& m) const { return n == m.n; } bool operator!=(const modint& m) const { return n != m.n; } modint& operator+=(const modint& m) { n += m.n; n = (n < mod ? n : n - mod); return *this; } modint& operator-=(const modint& m) { n += mod - m.n; n = (n < mod ? n : n - mod); return *this; } modint& operator*=(const modint& m) { n = std::uint64_t(n) * m.n % mod; return *this; } modint operator+(const modint& m) const { return modint(*this) += m; } modint operator-(const modint& m) const { return modint(*this) -= m; } modint operator*(const modint& m) const { return modint(*this) *= m; } modint inv() const { return (*this).pow(mod - 2); } modint pow(std::uint64_t b) const { modint ans = 1, m = modint(*this); while (b) { if (b & 1) ans *= m; m *= m; b >>= 1; } return ans; } }; #endif // CLASS_MODINT #include <vector> #include <iostream> #include <algorithm> using namespace std; using mint = modint<998244353>; int N, K, cnt[1024]; mint dp[1024][11], ndp[1024][11]; int main() { cin >> N >> K; for (int i = 0; i < N; ++i) { int x; cin >> x; ++cnt[x]; } dp[0][0] = 1; for (int i = 1; i < 1024; ++i) { for (int j = 0; j < 1024; ++j) { for (int k = 0; k < 10; ++k) { if ((i & j) == 0) { ndp[i | j][k + 1] += dp[j][k] * cnt[i]; } } } for (int j = 0; j < 1024; ++j) { for (int k = 0; k <= 10; ++k) { dp[j][k] += ndp[j][k]; ndp[j][k] = 0; } } } mint ans = 0; for (int i = 0; i < 1024; ++i) { ans += dp[i][K].get(); } cout << ans.get() << endl; return 0; }