結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kyunakyuna
提出日時 2018-11-06 20:05:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 135 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,408 KB
最終ジャッジ日時 2024-11-20 20:34:44
合計ジャッジ時間 46,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,872 KB
testcase_01 AC 31 ms
25,724 KB
testcase_02 AC 32 ms
17,152 KB
testcase_03 AC 31 ms
25,764 KB
testcase_04 AC 30 ms
25,380 KB
testcase_05 AC 34 ms
19,088 KB
testcase_06 AC 30 ms
25,360 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 38 ms
14,644 KB
testcase_13 AC 29 ms
10,368 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 TLE -
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 2,229 ms
14,624 KB
testcase_18 TLE -
testcase_19 AC 1,091 ms
32,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
stdin.readline()
x = {0}
for a in map(int, stdin.readline().split()):
    x |= {xi ^ a for xi in x}
print(len(x))
0