結果

問題 No.1189 Sum is XOR
ユーザー tamatotamato
提出日時 2020-08-24 20:05:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 103,284 KB
最終ジャッジ日時 2024-11-06 10:37:43
合計ジャッジ時間 3,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
103,284 KB
testcase_01 AC 130 ms
102,412 KB
testcase_02 AC 119 ms
102,276 KB
testcase_03 AC 58 ms
77,560 KB
testcase_04 AC 56 ms
75,308 KB
testcase_05 AC 66 ms
86,196 KB
testcase_06 AC 78 ms
97,752 KB
testcase_07 AC 61 ms
80,248 KB
testcase_08 AC 49 ms
67,140 KB
testcase_09 AC 51 ms
68,600 KB
testcase_10 AC 46 ms
65,312 KB
testcase_11 AC 110 ms
72,044 KB
testcase_12 AC 120 ms
102,788 KB
testcase_13 AC 158 ms
98,156 KB
testcase_14 AC 145 ms
85,236 KB
testcase_15 AC 143 ms
71,180 KB
testcase_16 AC 161 ms
68,784 KB
testcase_17 AC 122 ms
70,424 KB
testcase_18 AC 105 ms
77,080 KB
testcase_19 AC 152 ms
91,452 KB
testcase_20 AC 172 ms
91,276 KB
testcase_21 AC 71 ms
61,940 KB
testcase_22 AC 71 ms
61,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())
    A = list(map(int, input().split()))

    if K > 10:
        print(0)
        exit()

    cnt = [0] * 1024
    for a in A:
        cnt[a] += 1
    dp = [[0] * 1024 for _ in range(K+1)]
    dp[0][0] = 1
    for new in range(1, 1024):
        for k in range(K):
            for state in range(1024):
                if state & new == 0:
                    dp[k+1][state | new] = (dp[k+1][state | new] + dp[k][state] * cnt[new])%mod
    ans = 0
    for x in dp[K]:
        ans = (ans + x)%mod
    print(ans)


if __name__ == '__main__':
    main()
0