結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
c_r_5
|
| 提出日時 | 2018-09-12 19:25:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 169 bytes |
| 記録 | |
| コンパイル時間 | 580 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 30,844 KB |
| 最終ジャッジ日時 | 2026-03-15 13:09:22 |
| 合計ジャッジ時間 | 63,135 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 TLE * 9 |
ソースコード
n,*A=map(int,open(0).read().split())
ans=[0]
for a in A:
t=list(ans)
for i in t:
b=i^a
if not b in ans:
ans.append(b)
print(len(ans))
c_r_5