結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー wotsushiwotsushi
提出日時 2016-12-24 14:00:12
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 282 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 820,480 KB
最終ジャッジ日時 2024-05-08 13:07:52
合計ジャッジ時間 5,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
14,720 KB
testcase_01 AC 132 ms
16,896 KB
testcase_02 AC 176 ms
23,040 KB
testcase_03 AC 173 ms
21,504 KB
testcase_04 AC 123 ms
15,488 KB
testcase_05 AC 183 ms
24,064 KB
testcase_06 AC 142 ms
18,176 KB
testcase_07 MLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split().map(&:to_i)
dp = Array.new(2**14, false)
dp[0] = true
A.product([*0...(2**14)]).each do |a, i|
  if a < 2**14
    dp[i ^ a] ||= dp[i]
  end
end
ans = if A.include?(2**14)
        2 * dp.count(true)
      else
        dp.count(true)
      end
puts ans
0