結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー mkawa2mkawa2
提出日時 2020-01-01 18:22:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 295 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,716 KB
最終ジャッジ日時 2024-11-22 13:15:45
合計ジャッジ時間 42,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
28,480 KB
testcase_01 AC 30 ms
17,700 KB
testcase_02 AC 31 ms
26,664 KB
testcase_03 AC 30 ms
26,152 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 34 ms
12,288 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 3,789 ms
15,084 KB
testcase_10 AC 4,410 ms
15,120 KB
testcase_11 TLE -
testcase_12 AC 36 ms
14,844 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 TLE -
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 1,773 ms
14,920 KB
testcase_18 TLE -
testcase_19 AC 901 ms
32,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
def LI(): return list(map(int, sys.stdin.readline().split()))

def main():
    input()
    aa=LI()
    aa=set(aa)
    s=set([0])
    for a in aa:
        nxt=set()
        for sa in s:
            nxt.add(sa^a)
        s|=nxt
    print(len(s))

main()
0