結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー trineutrontrineutron
提出日時 2020-12-01 03:21:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 1,316 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 76,768 KB
最終ジャッジ日時 2024-06-12 09:35:57
合計ジャッジ時間 8,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
68,416 KB
testcase_01 AC 60 ms
72,904 KB
testcase_02 AC 41 ms
60,896 KB
testcase_03 AC 72 ms
76,208 KB
testcase_04 AC 80 ms
68,468 KB
testcase_05 AC 69 ms
68,212 KB
testcase_06 AC 57 ms
70,160 KB
testcase_07 AC 73 ms
67,664 KB
testcase_08 AC 73 ms
76,280 KB
testcase_09 AC 72 ms
68,172 KB
testcase_10 AC 75 ms
67,644 KB
testcase_11 AC 72 ms
67,920 KB
testcase_12 AC 67 ms
68,396 KB
testcase_13 AC 64 ms
67,252 KB
testcase_14 AC 66 ms
68,080 KB
testcase_15 AC 64 ms
68,576 KB
testcase_16 AC 70 ms
68,264 KB
testcase_17 AC 74 ms
76,336 KB
testcase_18 AC 66 ms
67,800 KB
testcase_19 AC 61 ms
67,948 KB
testcase_20 AC 54 ms
68,404 KB
testcase_21 AC 87 ms
76,060 KB
testcase_22 AC 72 ms
67,888 KB
testcase_23 AC 73 ms
67,988 KB
testcase_24 AC 77 ms
67,312 KB
testcase_25 AC 73 ms
76,212 KB
testcase_26 AC 69 ms
76,064 KB
testcase_27 AC 72 ms
76,136 KB
testcase_28 AC 70 ms
76,084 KB
testcase_29 AC 68 ms
76,184 KB
testcase_30 AC 59 ms
72,096 KB
testcase_31 AC 70 ms
76,524 KB
testcase_32 AC 74 ms
76,312 KB
testcase_33 AC 72 ms
76,768 KB
testcase_34 AC 74 ms
76,752 KB
testcase_35 AC 70 ms
76,352 KB
testcase_36 AC 70 ms
76,088 KB
testcase_37 AC 64 ms
74,732 KB
testcase_38 AC 48 ms
66,432 KB
testcase_39 AC 49 ms
67,808 KB
testcase_40 AC 67 ms
76,352 KB
testcase_41 AC 63 ms
74,400 KB
testcase_42 AC 72 ms
76,276 KB
testcase_43 AC 69 ms
76,332 KB
testcase_44 AC 71 ms
76,432 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 36 ms
53,764 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