結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yassu0320yassu0320
提出日時 2021-07-11 12:43:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,086 ms / 5,000 ms
コード長 883 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 194,048 KB
最終ジャッジ日時 2024-07-02 03:03:04
合計ジャッジ時間 16,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
66,816 KB
testcase_01 AC 71 ms
67,200 KB
testcase_02 AC 75 ms
68,864 KB
testcase_03 AC 74 ms
68,224 KB
testcase_04 AC 71 ms
66,816 KB
testcase_05 AC 78 ms
70,656 KB
testcase_06 AC 71 ms
67,200 KB
testcase_07 AC 3,086 ms
194,048 KB
testcase_08 AC 1,737 ms
136,960 KB
testcase_09 AC 1,221 ms
134,144 KB
testcase_10 AC 1,444 ms
135,560 KB
testcase_11 AC 1,858 ms
137,984 KB
testcase_12 AC 80 ms
73,344 KB
testcase_13 AC 72 ms
66,816 KB
testcase_14 AC 78 ms
71,936 KB
testcase_15 AC 1,930 ms
138,240 KB
testcase_16 AC 74 ms
67,584 KB
testcase_17 AC 514 ms
129,500 KB
testcase_18 AC 2,441 ms
191,956 KB
testcase_19 AC 320 ms
128,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

from sys import setrecursionlimit, stdin
from typing import Dict, Iterable, Set

INF: int = 2**62
MOD: int = 10**9 + 7

setrecursionlimit(10**6)


def inputs(type_=int):
    ins = input().split(' ')
    ins = [x for x in ins if x != '']

    if isinstance(type_, Iterable):
        return [t(x) for t, x in zip(type_, ins)]
    else:
        return list(map(type_, ins))


def input_(type_=int):
    a, = inputs(type_)
    return a


inputi = input_


def inputstr():
    return input_(str)


# b/aの切り上げ
def ceil(b, a):
    return (a + b - 1) // a


def answer(res) -> None:
    print(res)
    exit()


def compute():
    return


def main():
    n = inputi()
    xs = inputs()

    s = set([0])
    for i in range(n):
        for x in s.copy():
            s.add(x ^ xs[i])

    # print(s)
    print(len(s))


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