結果

問題 No.1189 Sum is XOR
ユーザー 37zigen37zigen
提出日時 2020-08-26 21:13:06
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 405 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-11-07 13:39:10
合計ジャッジ時間 17,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,256 ms
105,216 KB
testcase_01 TLE -
testcase_02 AC 1,986 ms
105,344 KB
testcase_03 AC 64 ms
76,672 KB
testcase_04 AC 61 ms
74,624 KB
testcase_05 AC 71 ms
85,120 KB
testcase_06 AC 85 ms
97,792 KB
testcase_07 AC 66 ms
79,872 KB
testcase_08 AC 53 ms
66,048 KB
testcase_09 AC 54 ms
66,944 KB
testcase_10 AC 51 ms
64,128 KB
testcase_11 AC 293 ms
80,128 KB
testcase_12 AC 1,250 ms
105,088 KB
testcase_13 AC 1,654 ms
100,992 KB
testcase_14 AC 1,071 ms
90,752 KB
testcase_15 AC 298 ms
79,616 KB
testcase_16 AC 270 ms
76,800 KB
testcase_17 AC 403 ms
79,232 KB
testcase_18 AC 455 ms
84,480 KB
testcase_19 AC 1,422 ms
95,232 KB
testcase_20 AC 1,453 ms
95,744 KB
testcase_21 AC 53 ms
61,440 KB
testcase_22 AC 53 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353
N,K=map(int,input().split())
A=list(map(int,input().split()))
if K>10:
    exit(print(0))
dp=[[0]*11 for _ in range(1<<10)]
dp[0][0]=1
for a in A:
    s=(~a)&((1<<10)-1)
    while True:
        for i in range(10):
            dp[a|s][i+1]=(dp[a|s][i+1]+dp[s][i])%MOD
        if s==0:
            break
        s=(s-1)&(~a)
ans=0
for i in range(1,1<<10):
    ans=(ans+dp[i][K])%MOD
print(ans)
0