結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
c_r_5
|
| 提出日時 | 2018-09-12 19:25:49 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 169 bytes |
| コンパイル時間 | 200 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 18,976 KB |
| 最終ジャッジ日時 | 2024-06-27 14:15:21 |
| 合計ジャッジ時間 | 9,679 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 TLE * 1 -- * 12 |
ソースコード
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