結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー wotsushiwotsushi
提出日時 2016-12-24 14:00:12
言語 Ruby
(3.4.1)
結果
MLE  
実行時間 -
コード長 282 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 817,792 KB
最終ジャッジ日時 2024-12-14 17:22:55
合計ジャッジ時間 46,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
14,592 KB
testcase_01 AC 131 ms
17,024 KB
testcase_02 AC 174 ms
23,168 KB
testcase_03 AC 164 ms
21,632 KB
testcase_04 AC 120 ms
15,616 KB
testcase_05 AC 187 ms
23,808 KB
testcase_06 AC 137 ms
18,048 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 320 ms
24,704 KB
testcase_13 AC 97 ms
13,184 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 279 ms
21,632 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 AC 3,866 ms
488,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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