結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
wotsushi
|
| 提出日時 | 2016-12-24 18:09:19 |
| 言語 | Ruby (3.4.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 274 bytes |
| コンパイル時間 | 78 ms |
| コンパイル使用メモリ | 7,680 KB |
| 実行使用メモリ | 12,672 KB |
| 最終ジャッジ日時 | 2024-12-14 17:27:32 |
| 合計ジャッジ時間 | 3,878 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 18 |
コンパイルメッセージ
Syntax OK
ソースコード
require 'Set'
N = gets.to_i
A = gets.split().map(&:to_i)
dp = Set[0]
A.each do |a|
if a < 2**14
s = Set[]
dp.each do |x|
s << (x ^ a)
end
dp += s
end
end
ans = if A.include?(2**14)
2 * dp.size
else
dp.size
end
puts ans
wotsushi