結果
| 問題 | No.184 たのしい排他的論理和(HARD) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-04-17 22:40:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 172 bytes |
| コンパイル時間 | 81 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 821,636 KB |
| 最終ジャッジ日時 | 2024-07-04 11:35:55 |
| 合計ジャッジ時間 | 4,862 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 MLE * 1 |
| other | -- * 34 |
ソースコード
from sys import stdin
stdin.readline()
x = {0}
A = set(map(int, stdin.readline().split()))
for a in A:
if a not in x:
x |= {xi ^ a for xi in x}
print(len(x))