結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | wotsushi |
提出日時 | 2016-12-24 13:50:56 |
言語 | Ruby (3.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 181 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 820,992 KB |
最終ジャッジ日時 | 2024-05-08 13:07:38 |
合計ジャッジ時間 | 6,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 145 ms
17,536 KB |
testcase_01 | AC | 174 ms
22,784 KB |
testcase_02 | AC | 267 ms
35,456 KB |
testcase_03 | AC | 249 ms
32,384 KB |
testcase_04 | AC | 151 ms
19,456 KB |
testcase_05 | AC | 276 ms
36,992 KB |
testcase_06 | AC | 183 ms
24,576 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
ソースコード
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