結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー takakintakakin
提出日時 2020-04-18 15:46:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 822 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 248,608 KB
最終ジャッジ日時 2024-10-03 23:49:29
合計ジャッジ時間 7,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,472 KB
testcase_01 AC 44 ms
61,372 KB
testcase_02 AC 44 ms
64,100 KB
testcase_03 AC 44 ms
62,724 KB
testcase_04 AC 41 ms
61,200 KB
testcase_05 AC 45 ms
65,700 KB
testcase_06 AC 42 ms
62,612 KB
testcase_07 AC 755 ms
247,780 KB
testcase_08 AC 756 ms
248,608 KB
testcase_09 AC 601 ms
247,612 KB
testcase_10 AC 661 ms
246,900 KB
testcase_11 AC 801 ms
247,588 KB
testcase_12 AC 44 ms
64,576 KB
testcase_13 AC 36 ms
59,316 KB
testcase_14 AC 817 ms
248,260 KB
testcase_15 AC 822 ms
247,536 KB
testcase_16 AC 42 ms
62,880 KB
testcase_17 AC 296 ms
247,644 KB
testcase_18 AC 738 ms
248,440 KB
testcase_19 AC 209 ms
199,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
m=2**15
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