結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
28,376 KB
testcase_01 AC 30 ms
15,872 KB
testcase_02 AC 32 ms
18,724 KB
testcase_03 AC 31 ms
26,128 KB
testcase_04 AC 31 ms
16,000 KB
testcase_05 AC 34 ms
27,168 KB
testcase_06 AC 30 ms
17,576 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 38 ms
14,816 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 TLE -
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 2,235 ms
14,864 KB
testcase_18 TLE -
testcase_19 AC 1,101 ms
32,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *A = map(int, open(0).read().split())
x = {0}
for a in A:
    x |= {xi ^ a for xi in x}
print(len(x))
0