結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-11 21:50:03 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 192 bytes |
| コンパイル時間 | 785 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 69,120 KB |
| 最終ジャッジ日時 | 2024-10-13 09:00:51 |
| 合計ジャッジ時間 | 4,459 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 RE * 3 |
ソースコード
n = int(input())
A = list(map(int,input().split()))
dp = [0]*(2**14+1)
dp[0] = 1
for a in A:
for i in range(2**14+1):
if dp[i]:
dp[i^a] = 1
print(sum(dp))