結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー trineutrontrineutron
提出日時 2020-12-01 03:13:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-12 09:35:46
合計ジャッジ時間 35,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 37 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 560 ms
10,752 KB
testcase_05 AC 273 ms
10,624 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 442 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 397 ms
10,880 KB
testcase_10 AC 324 ms
10,752 KB
testcase_11 AC 463 ms
10,624 KB
testcase_12 AC 337 ms
10,624 KB
testcase_13 AC 232 ms
10,496 KB
testcase_14 AC 326 ms
10,624 KB
testcase_15 AC 307 ms
10,624 KB
testcase_16 AC 327 ms
10,624 KB
testcase_17 AC 114 ms
10,752 KB
testcase_18 AC 320 ms
10,880 KB
testcase_19 AC 184 ms
10,624 KB
testcase_20 AC 53 ms
10,496 KB
testcase_21 AC 252 ms
10,752 KB
testcase_22 AC 344 ms
10,624 KB
testcase_23 AC 453 ms
10,624 KB
testcase_24 AC 539 ms
10,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 41 ms
10,624 KB
testcase_31 AC 59 ms
10,752 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 37 ms
10,496 KB
testcase_39 AC 46 ms
10,624 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
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:
            dp[i + 1][item ^ prev] += dp[i][prev]
        if i > 0:
            dp[i + 1][prev] -= k * dp[i - 1][prev]
        if i > 1:
            for item in a:
                dp[i + 1][prev] += dp[i - 2][item ^ prev]

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