結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー trineutrontrineutron
提出日時 2020-12-01 03:20:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,897 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-12 09:37:16
合計ジャッジ時間 51,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 50 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 278 ms
11,008 KB
testcase_04 AC 1,897 ms
10,880 KB
testcase_05 AC 818 ms
10,624 KB
testcase_06 AC 44 ms
10,496 KB
testcase_07 AC 1,517 ms
10,624 KB
testcase_08 AC 253 ms
10,752 KB
testcase_09 AC 1,444 ms
10,752 KB
testcase_10 AC 1,068 ms
10,496 KB
testcase_11 AC 1,440 ms
10,624 KB
testcase_12 AC 1,183 ms
10,624 KB
testcase_13 AC 770 ms
10,496 KB
testcase_14 AC 983 ms
10,752 KB
testcase_15 AC 900 ms
10,624 KB
testcase_16 AC 1,103 ms
10,624 KB
testcase_17 AC 266 ms
10,624 KB
testcase_18 AC 1,041 ms
10,624 KB
testcase_19 AC 644 ms
10,624 KB
testcase_20 AC 124 ms
10,496 KB
testcase_21 AC 650 ms
10,368 KB
testcase_22 AC 1,171 ms
10,752 KB
testcase_23 AC 1,565 ms
10,624 KB
testcase_24 AC 1,793 ms
10,624 KB
testcase_25 AC 153 ms
10,624 KB
testcase_26 AC 236 ms
10,624 KB
testcase_27 AC 322 ms
10,624 KB
testcase_28 AC 182 ms
10,624 KB
testcase_29 AC 179 ms
10,624 KB
testcase_30 AC 64 ms
10,496 KB
testcase_31 AC 143 ms
10,624 KB
testcase_32 AC 338 ms
10,752 KB
testcase_33 AC 157 ms
10,624 KB
testcase_34 AC 317 ms
10,624 KB
testcase_35 AC 174 ms
10,496 KB
testcase_36 AC 162 ms
10,624 KB
testcase_37 AC 142 ms
10,624 KB
testcase_38 AC 47 ms
10,496 KB
testcase_39 AC 79 ms
10,624 KB
testcase_40 AC 151 ms
10,496 KB
testcase_41 AC 137 ms
10,496 KB
testcase_42 AC 166 ms
10,624 KB
testcase_43 AC 165 ms
10,496 KB
testcase_44 AC 163 ms
10,752 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 TLE -
06_evil_C_02 TLE -
06_evil_C_03 TLE -
06_evil_C_04 TLE -
06_evil_C_05 TLE -
06_evil_C_06 TLE -
06_evil_C_07 TLE -
06_evil_C_08 TLE -
06_evil_C_09 TLE -
06_evil_C_10 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

n, k, x, y = map(int, input().split())
a = set(map(int, input().split()))
k = len(a)
x = min(x, 1024)
y = min(y, 1023)

dp = [[0] * 1024 for i in range(n + 1)]
dp[0][0] = 1
for i in range(n):
    for prev in range(1024):
        for item in a:
            for j in range(i, -1, -2):
                dp[i + 1][prev] += dp[j][item ^ prev]
            for j in range(i - 1, -1, -2):
                dp[i + 1][prev] -= dp[j][prev]

print(sum(dp[n][x:y+1]) % mod)
0