結果
問題 | No.1189 Sum is XOR |
ユーザー | chocorusk |
提出日時 | 2020-08-22 13:38:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 1,437 bytes |
コンパイル時間 | 1,183 ms |
コンパイル使用メモリ | 127,700 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 07:53:03 |
合計ジャッジ時間 | 2,484 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
5,248 KB |
testcase_01 | AC | 45 ms
5,248 KB |
testcase_02 | AC | 44 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 11 ms
5,248 KB |
testcase_12 | AC | 44 ms
5,248 KB |
testcase_13 | AC | 38 ms
5,248 KB |
testcase_14 | AC | 25 ms
5,248 KB |
testcase_15 | AC | 12 ms
5,248 KB |
testcase_16 | AC | 9 ms
5,248 KB |
testcase_17 | AC | 11 ms
5,248 KB |
testcase_18 | AC | 17 ms
5,248 KB |
testcase_19 | AC | 32 ms
5,248 KB |
testcase_20 | AC | 33 ms
5,248 KB |
testcase_21 | AC | 3 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=998244353; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k>>=1; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } ll dp[11][1<<10]; int main() { int n, k; cin>>n>>k; if(k>10){ cout<<0<<endl; return 0; } int a[200020]; for(int i=0; i<n; i++) cin>>a[i]; int cnt[1<<10]={}; for(int i=0; i<n; i++) cnt[a[i]]++; dp[0][0]=1; for(int i=1; i<(1<<10); i++){ for(int j=i; j>0; j=(j-1)&i){ for(int l=1; l<=k; l++){ dp[l][i]+=dp[l-1][i-j]*cnt[j]; dp[l][i]%=MOD; } } } ll ans=0; for(int i=0; i<(1<<10); i++) (ans+=dp[k][i])%=MOD; for(int i=2; i<=k; i++) (ans*=inv(i))%=MOD; cout<<ans<<endl; return 0; }