結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
tnoda_
|
| 提出日時 | 2015-08-18 18:41:09 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 1,463 ms / 5,000 ms |
| コード長 | 203 bytes |
| コンパイル時間 | 836 ms |
| コンパイル使用メモリ | 76,920 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2024-06-29 02:38:13 |
| 合計ジャッジ時間 | 10,223 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
N = input()
A = map(int, raw_input().strip().split())
dp = [False] * (1 << 15)
dp[0] = True
for a in A:
for i in xrange(len(dp)):
if dp[i]:
dp[a ^ i] = True
print(dp.count(True))
tnoda_