結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
17,536 KB
testcase_01 AC 157 ms
22,784 KB
testcase_02 AC 245 ms
35,200 KB
testcase_03 AC 222 ms
32,256 KB
testcase_04 AC 128 ms
19,456 KB
testcase_05 AC 249 ms
36,864 KB
testcase_06 AC 168 ms
24,448 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 286 ms
38,528 KB
testcase_13 AC 105 ms
14,208 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 266 ms
32,384 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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