結果

問題 No.699 ペアでチームを作ろう2
ユーザー cympfhcympfh
提出日時 2018-06-13 15:27:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 343 ms / 1,000 ms
コード長 293 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-30 14:06:33
合計ジャッジ時間 4,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 110 ms
12,416 KB
testcase_05 AC 338 ms
12,160 KB
testcase_06 AC 337 ms
12,288 KB
testcase_07 AC 341 ms
12,288 KB
testcase_08 AC 339 ms
12,160 KB
testcase_09 AC 341 ms
12,416 KB
testcase_10 AC 339 ms
12,288 KB
testcase_11 AC 343 ms
12,288 KB
testcase_12 AC 336 ms
12,160 KB
testcase_13 AC 340 ms
12,416 KB
testcase_14 AC 337 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def solve(xs, ac)
  return ac if xs.size == 0
  ys = xs.clone
  y = ys[0]
  ys.delete_at 0
  ans = 0
  ys.size.times do |i|
    zs = ys.clone
    z = ys[i]
    zs.delete_at i
    ans = [ans, solve(zs, (y + z) ^ ac)].max
  end
  ans
end
_ = gets.to_i
xs = gets.split.map(&:to_i)
p solve(xs, 0)
0