結果
| 問題 | 
                            No.1304 あなたは基本が何か知っていますか?私は知っています.
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-12-01 18:07:44 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 7 ms / 2,000 ms | 
| コード長 | 1,632 bytes | 
| コンパイル時間 | 4,518 ms | 
| コンパイル使用メモリ | 214,644 KB | 
| 実行使用メモリ | 7,848 KB | 
| 最終ジャッジ日時 | 2025-06-22 02:39:43 | 
| 合計ジャッジ時間 | 8,976 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 45 RE * 29 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:47:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   47 |     scanf("%d%d%d%d",&n,&m,&x,&y);y++;
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:49:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |         scanf("%d",&a);
      |         ~~~~~^~~~~~~~~
            
            ソースコード
#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
// struct fastI{
//     char in[1<<26];
//     char const*o;
//     fastI(){
//         o = in; 
//         in[fread(in,1,sizeof(in)-4,stdin)]=0;
//     }
//     fastI& operator>>(char& c){
//         while(*o&&*o<=32)++o;
//         c=*o++;
//         return *this;
//     }
//     fastI& operator>>(int& u){
//         u=0; 
//         unsigned s=0;
//         while(*o&&*o<=32)++o;
//         if (*o == '-')s = ~s, ++o; else if (*o == '+')++o;
//         while('0'<=*o && *o<='9')u = (u<<3) + (u << 1) + (*o++ - '0');
//         (u^=s)+=!!s;
//         return *this;
//     }
//     fastI& operator>>(long long& u){
//         u=0;
//         uint64_t s=0;
//         while(*o&&*o<=32)++o;
//         if (*o == '-')s = ~s, ++o; else if (*o == '+')++o;
//         while('0'<=*o && *o<='9')u = (u<<3) + (u << 1) + (*o++ - '0');
//         (u^=s)+=!!s;
//         return *this;
//     }
// } fin;
constexpr ll mod=998244353;
const int N=1024;
int A[N];
ll dp[42][1024];
int n,k,m,x,y,a;
int main(){
    scanf("%d%d%d%d",&n,&m,&x,&y);y++;
    for(int i=0;i<m;i++){
        scanf("%d",&a);
        k+=(A[a]?0:++A[a]);
    }
    dp[0][0]=1;
    for(int i=0;i<n;i++){
        for(int j=0;j<N;j++){
            if(dp[i][j]==0)continue;
            for(int l=0;l<N;l++){
                dp[i+1][j^l]+=A[l]*dp[i][j];
            }
            dp[i+2][j]-=dp[i][j]*(k-(i>0));
        }
    }
    ll res=0;
    for(int i=x;i<min(N,y);i++){
        res+=dp[n][i];
    }
    res%=mod;
    printf("%lld\n",res);
}