結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー junkaijunkai
提出日時 2020-12-02 20:53:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 927 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 172,916 KB
実行使用メモリ 173,592 KB
最終ジャッジ日時 2024-06-12 14:10:17
合計ジャッジ時間 26,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
173,228 KB
testcase_01 AC 80 ms
173,364 KB
testcase_02 AC 64 ms
173,348 KB
testcase_03 AC 324 ms
173,348 KB
testcase_04 WA -
testcase_05 AC 71 ms
173,436 KB
testcase_06 AC 71 ms
173,360 KB
testcase_07 WA -
testcase_08 AC 105 ms
173,368 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 75 ms
173,572 KB
testcase_13 AC 67 ms
173,352 KB
testcase_14 AC 74 ms
173,440 KB
testcase_15 WA -
testcase_16 AC 76 ms
173,368 KB
testcase_17 AC 91 ms
173,276 KB
testcase_18 AC 75 ms
173,408 KB
testcase_19 AC 67 ms
173,376 KB
testcase_20 AC 63 ms
173,352 KB
testcase_21 AC 94 ms
173,448 KB
testcase_22 WA -
testcase_23 AC 86 ms
173,452 KB
testcase_24 WA -
testcase_25 AC 156 ms
173,360 KB
testcase_26 AC 105 ms
173,416 KB
testcase_27 AC 116 ms
173,312 KB
testcase_28 AC 123 ms
173,220 KB
testcase_29 WA -
testcase_30 AC 134 ms
173,388 KB
testcase_31 AC 195 ms
173,332 KB
testcase_32 AC 110 ms
173,492 KB
testcase_33 AC 156 ms
173,376 KB
testcase_34 AC 112 ms
173,412 KB
testcase_35 AC 142 ms
173,276 KB
testcase_36 AC 180 ms
173,396 KB
testcase_37 AC 139 ms
173,508 KB
testcase_38 AC 141 ms
173,348 KB
testcase_39 AC 210 ms
173,328 KB
testcase_40 AC 149 ms
173,228 KB
testcase_41 AC 222 ms
173,400 KB
testcase_42 AC 141 ms
173,336 KB
testcase_43 AC 141 ms
173,344 KB
testcase_44 AC 178 ms
173,400 KB
04_evil_A_01 RE -
04_evil_A_02 RE -
04_evil_A_03 RE -
04_evil_A_04 RE -
04_evil_A_05 RE -
04_evil_A_06 RE -
04_evil_A_07 RE -
04_evil_A_08 RE -
04_evil_A_09 RE -
04_evil_A_10 RE -
05_evil_B_01 RE -
05_evil_B_02 RE -
05_evil_B_03 RE -
05_evil_B_04 RE -
05_evil_B_05 RE -
05_evil_B_06 RE -
05_evil_B_07 RE -
05_evil_B_08 RE -
05_evil_B_09 RE -
05_evil_B_10 RE -
06_evil_C_01 RE -
06_evil_C_02 RE -
06_evil_C_03 RE -
06_evil_C_04 RE -
06_evil_C_05 RE -
06_evil_C_06 RE -
06_evil_C_07 RE -
06_evil_C_08 RE -
06_evil_C_09 RE -
06_evil_C_10 AC 52 ms
173,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
int MOD = 998244353;
int dp[41][1030][1030];
void add(int &a, int b)
{
    a = (a+b) % MOD;
}
int main()
{
    int n, k, x, y;
    cin >> n >> k >> x >> y;
    set<int> s;
    rep(i, k)
    {
        int a;
        cin >> a;
        s.insert(a);
    }
    memset(dp, 0, sizeof(dp));
    int mn = 1030;
    dp[0][0][0] = 1;
    rep(i, n)
    {
        rep(j, mn)
        {
            int sum = 0;
            rep(t, mn) add(sum, dp[i][j][t]);
            if(sum == 0) continue;
            for(int l : s)
            {
                add(sum, -dp[i][j][l]);
                add(dp[i+1][j^l][l], sum);
                add(sum, dp[i][j][l]);
            }
        }
    }
    int ans = 0;
    for(int i = x; i <= y; i++) rep(j, 1030) add(ans, dp[n][i][j]);
    cout << ans << endl;
}
0