結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー e-mone-mon
提出日時 2015-04-17 13:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,247 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,788 KB
最終ジャッジ日時 2024-06-29 01:46:10
合計ジャッジ時間 20,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,212 KB
testcase_01 AC 31 ms
53,004 KB
testcase_02 AC 37 ms
62,152 KB
testcase_03 AC 35 ms
60,348 KB
testcase_04 AC 31 ms
53,552 KB
testcase_05 AC 38 ms
63,032 KB
testcase_06 AC 31 ms
52,708 KB
testcase_07 AC 4,247 ms
72,788 KB
testcase_08 AC 2,303 ms
67,352 KB
testcase_09 AC 1,578 ms
67,680 KB
testcase_10 AC 1,868 ms
67,336 KB
testcase_11 AC 2,479 ms
67,268 KB
testcase_12 AC 46 ms
68,868 KB
testcase_13 AC 35 ms
53,244 KB
testcase_14 AC 41 ms
62,368 KB
testcase_15 AC 2,557 ms
68,432 KB
testcase_16 AC 42 ms
59,016 KB
testcase_17 AC 602 ms
66,720 KB
testcase_18 AC 3,359 ms
72,040 KB
testcase_19 AC 308 ms
65,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-

N = int(input())
dp = dict()
A = list(map(int,input().split()))
dp[0] = True

for a in A:
    tmp = dict()
    for i,value in dp.items():
        if i ^ a not in dp:
            tmp[i^a] = True
    dp.update(tmp)
print(len(dp.keys()))
0