結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー すフすフ
提出日時 2022-09-19 23:41:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 383 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 953,600 KB
最終ジャッジ日時 2024-12-22 02:56:06
合計ジャッジ時間 28,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
11,392 KB
testcase_01 AC 69 ms
11,904 KB
testcase_02 AC 112 ms
13,952 KB
testcase_03 AC 102 ms
13,440 KB
testcase_04 AC 59 ms
11,648 KB
testcase_05 AC 123 ms
14,208 KB
testcase_06 AC 76 ms
12,416 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 TLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 WA -
testcase_13 AC 38 ms
10,624 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 113 ms
13,440 KB
testcase_17 AC 4,734 ms
297,472 KB
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

#dp[i][j] = i番目まで,jを作ることができるか

dp = [[False]*(pow(2,15)+1) for i in range(n)]

dp[0][0] = True
dp[0][a[0]] = True

for i in range(1,n):
    for j in range(pow(2,14)+1):
        dp[i][j] = dp[i-1][j] or dp[i-1][j^a[i]]
ans = 0
for i in range(pow(2,15)+1):
    if dp[-1][i]:
        ans += 1
print(ans)
0