結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー あかりきあかりき
提出日時 2021-03-01 19:08:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 273 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 849,028 KB
最終ジャッジ日時 2024-10-03 00:56:11
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,940 KB
testcase_01 AC 46 ms
60,824 KB
testcase_02 AC 52 ms
63,860 KB
testcase_03 AC 51 ms
64,184 KB
testcase_04 AC 44 ms
60,776 KB
testcase_05 AC 52 ms
64,516 KB
testcase_06 AC 47 ms
61,892 KB
testcase_07 MLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp=[[0]*(2**15) for i in range(n+1)]
dp[0][0]=1
for i in range(n):
  for j in range(2**15-1):
    if dp[i][j]==1:
      dp[i+1][j^a[i]]=1
      dp[i+1][j]=1
ans=0
for i in range(2**15):
  if dp[n][i]==1:
    ans+=1
print(ans)
0