結果
問題 | No.1189 Sum is XOR |
ユーザー | mkawa2 |
提出日時 | 2021-07-14 22:11:19 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,056 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 118,104 KB |
最終ジャッジ日時 | 2024-07-03 23:01:10 |
合計ジャッジ時間 | 6,765 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**16 md = 998244353 # md = 10**9+7 n, k = LI() aa = LI() if k > 10: print(0) exit() def add(i, j, val): dp[i][j] = (dp[i][j]+val)%md dp = [[0]*(1 << 10) for _ in range(k+1)] dp[0][0] = 1 for a in aa: for i in range(k): for s in range(1 << 10): if s & a: continue pre = dp[i][s] if pre == 0: continue add(i+1, s | a, pre) ans = 0 for s in range(1 << 10): ans += dp[k][s] ans %= md print(ans)