結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
c_r_5
|
| 提出日時 | 2018-09-12 19:16:47 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 124 bytes |
| 記録 | |
| コンパイル時間 | 1,798 ms |
| コンパイル使用メモリ | 85,444 KB |
| 実行使用メモリ | 388,812 KB |
| 最終ジャッジ日時 | 2026-03-15 12:50:20 |
| 合計ジャッジ時間 | 57,119 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 TLE * 9 |
ソースコード
n,*A=map(int,open(0).read().split())
ans=[0]
for a in A:
for i in set(ans):
ans.append(i^a)
print(len(set(ans)))
c_r_5