結果

問題 No.5001 排他的論理和でランニング
ユーザー letrangerjpletrangerjp
提出日時 2018-03-16 23:28:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 134 ms / 1,500 ms
コード長 345 bytes
コンパイル時間 67 ms
実行使用メモリ 23,792 KB
スコア 35,225,942
最終ジャッジ日時 2020-03-12 19:35:18
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
23,016 KB
testcase_01 AC 28 ms
13,200 KB
testcase_02 AC 37 ms
14,028 KB
testcase_03 AC 66 ms
16,400 KB
testcase_04 AC 133 ms
23,792 KB
testcase_05 AC 51 ms
15,452 KB
testcase_06 AC 80 ms
19,216 KB
testcase_07 AC 88 ms
19,544 KB
testcase_08 AC 113 ms
19,368 KB
testcase_09 AC 11 ms
11,776 KB
testcase_10 AC 43 ms
14,552 KB
testcase_11 AC 55 ms
15,700 KB
testcase_12 AC 44 ms
14,916 KB
testcase_13 AC 111 ms
19,520 KB
testcase_14 AC 78 ms
18,292 KB
testcase_15 AC 49 ms
15,460 KB
testcase_16 AC 28 ms
13,080 KB
testcase_17 AC 37 ms
13,764 KB
testcase_18 AC 73 ms
17,012 KB
testcase_19 AC 53 ms
15,740 KB
testcase_20 AC 42 ms
14,400 KB
testcase_21 AC 40 ms
14,204 KB
testcase_22 AC 20 ms
12,588 KB
testcase_23 AC 18 ms
12,220 KB
testcase_24 AC 50 ms
16,168 KB
testcase_25 AC 106 ms
22,388 KB
testcase_26 AC 88 ms
20,256 KB
testcase_27 AC 61 ms
16,952 KB
testcase_28 AC 90 ms
19,052 KB
testcase_29 AC 105 ms
20,496 KB
testcase_30 AC 25 ms
12,824 KB
testcase_31 AC 85 ms
18,516 KB
testcase_32 AC 41 ms
14,292 KB
testcase_33 AC 121 ms
20,384 KB
testcase_34 AC 134 ms
23,544 KB
testcase_35 AC 86 ms
18,596 KB
testcase_36 AC 119 ms
22,592 KB
testcase_37 AC 93 ms
19,584 KB
testcase_38 AC 41 ms
14,368 KB
testcase_39 AC 51 ms
15,320 KB
testcase_40 AC 63 ms
16,636 KB
testcase_41 AC 22 ms
12,880 KB
testcase_42 AC 57 ms
15,636 KB
testcase_43 AC 66 ms
16,312 KB
testcase_44 AC 107 ms
20,600 KB
testcase_45 AC 114 ms
21,368 KB
testcase_46 AC 114 ms
22,516 KB
testcase_47 AC 54 ms
15,568 KB
testcase_48 AC 43 ms
14,464 KB
testcase_49 AC 98 ms
19,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map &:to_i
A = gets.split.map(&:to_i).sort.reverse
m = N - M
res = A.inject(:^)
sub = []
A.group_by{|a|Math.log2(a).floor}.each{|k, v|
  ok = res & 2**k != 0
  v.pop if ok ^ v.size.even?
  v.each{|n|
    res ^= n
    sub << n
    m -= 1
    if m == 0
      puts (A - sub)*" "
      exit
    end
  }
}
puts (A - sub).max(M)*" "
0