結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー takakintakakin
提出日時 2020-04-18 15:45:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 249 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 83,276 KB
最終ジャッジ日時 2024-10-03 23:48:59
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,040 KB
testcase_01 AC 45 ms
61,648 KB
testcase_02 AC 49 ms
62,456 KB
testcase_03 AC 46 ms
61,988 KB
testcase_04 AC 44 ms
61,188 KB
testcase_05 AC 48 ms
62,800 KB
testcase_06 AC 47 ms
60,628 KB
testcase_07 RE -
testcase_08 AC 389 ms
82,528 KB
testcase_09 AC 282 ms
80,136 KB
testcase_10 AC 331 ms
81,508 KB
testcase_11 AC 417 ms
83,080 KB
testcase_12 RE -
testcase_13 AC 42 ms
59,808 KB
testcase_14 AC 428 ms
83,276 KB
testcase_15 AC 431 ms
82,996 KB
testcase_16 AC 48 ms
62,816 KB
testcase_17 AC 142 ms
77,388 KB
testcase_18 RE -
testcase_19 AC 105 ms
76,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
m=2**14
DP1=[0]*m
DP1[0]=1
for i in range(n):
  DP2=[0]*m
  for j in range(m):    
    DP2[j]=max(DP1[j],DP1[j^A[i]])
  DP1=DP2
print(sum(DP1))
0