結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
88,912 KB
testcase_01 AC 136 ms
88,944 KB
testcase_02 AC 135 ms
89,192 KB
testcase_03 AC 143 ms
89,112 KB
testcase_04 AC 138 ms
89,020 KB
testcase_05 AC 140 ms
89,728 KB
testcase_06 AC 138 ms
89,000 KB
testcase_07 AC 2,230 ms
259,992 KB
testcase_08 AC 1,181 ms
96,196 KB
testcase_09 AC 852 ms
94,092 KB
testcase_10 AC 982 ms
94,748 KB
testcase_11 AC 1,273 ms
96,504 KB
testcase_12 AC 142 ms
92,312 KB
testcase_13 AC 139 ms
88,932 KB
testcase_14 AC 143 ms
89,216 KB
testcase_15 AC 1,323 ms
96,676 KB
testcase_16 AC 140 ms
89,368 KB
testcase_17 AC 423 ms
91,136 KB
testcase_18 AC 1,889 ms
259,928 KB
testcase_19 AC 263 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 i in range(N):
        for s in list(S):
            S.add(s ^ A[i])
    print(len(S))

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