結果

問題 No.130 XOR Minimax
ユーザー code-devocode-devo
提出日時 2016-02-06 08:40:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,466 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 38,992 KB
最終ジャッジ日時 2024-09-12 22:39:50
合計ジャッジ時間 15,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 700 ms
18,688 KB
testcase_01 AC 88 ms
12,416 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 132 ms
19,712 KB
testcase_05 AC 134 ms
20,608 KB
testcase_06 AC 678 ms
33,012 KB
testcase_07 AC 768 ms
38,992 KB
testcase_08 AC 1,466 ms
26,976 KB
testcase_09 AC 190 ms
16,768 KB
testcase_10 AC 240 ms
17,920 KB
testcase_11 AC 476 ms
29,660 KB
testcase_12 AC 146 ms
14,464 KB
testcase_13 AC 421 ms
27,520 KB
testcase_14 AC 1,260 ms
24,840 KB
testcase_15 AC 105 ms
12,672 KB
testcase_16 AC 911 ms
23,424 KB
testcase_17 AC 944 ms
23,808 KB
testcase_18 AC 994 ms
24,320 KB
testcase_19 AC 1,186 ms
24,192 KB
testcase_20 AC 642 ms
18,304 KB
testcase_21 AC 1,255 ms
24,840 KB
testcase_22 AC 347 ms
15,744 KB
testcase_23 AC 178 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def calc(a, b)
  return a[0] if b < 0

  mask = 2 ** b
  p0, p1 = a.partition{|n| n & mask == 0}
  if p0.empty? then
    return calc(p1.map{|n| n ^ mask}, b - 1)
  elsif p1.empty? then
    return calc(p0, b - 1)
  else
    v1 = calc(p0.map{|n| n ^ mask}, b - 1)
    v2 = calc(p1, b - 1)
    return [v1, v2].min
  end
end

gets
a = gets.split.map(&:to_i).uniq
puts calc(a, 30)
0