結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tcltktcltk
提出日時 2021-01-16 14:22:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,099 ms / 5,000 ms
コード長 626 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 259,924 KB
最終ジャッジ日時 2024-05-05 16:41:14
合計ジャッジ時間 13,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
88,832 KB
testcase_01 AC 137 ms
88,960 KB
testcase_02 AC 136 ms
89,216 KB
testcase_03 AC 131 ms
88,960 KB
testcase_04 AC 133 ms
88,832 KB
testcase_05 AC 136 ms
89,728 KB
testcase_06 AC 133 ms
88,576 KB
testcase_07 AC 2,099 ms
259,584 KB
testcase_08 AC 1,078 ms
95,872 KB
testcase_09 AC 853 ms
94,080 KB
testcase_10 AC 1,075 ms
94,720 KB
testcase_11 AC 1,183 ms
96,384 KB
testcase_12 AC 136 ms
92,416 KB
testcase_13 AC 139 ms
89,088 KB
testcase_14 AC 139 ms
89,728 KB
testcase_15 AC 1,194 ms
96,768 KB
testcase_16 AC 137 ms
89,216 KB
testcase_17 AC 369 ms
91,520 KB
testcase_18 AC 1,783 ms
259,924 KB
testcase_19 AC 248 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)



def main():
    N = int(input())
    A = list(map(int, input().split()))

    S = set([0])
    for a in A:
        for s in list(S):
            S.add(s ^ a)
    print(len(S))

if __name__ == '__main__':
    main()
0