結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
23,128 KB
testcase_01 AC 29 ms
13,128 KB
testcase_02 AC 37 ms
14,072 KB
testcase_03 AC 65 ms
16,564 KB
testcase_04 AC 134 ms
23,784 KB
testcase_05 AC 50 ms
15,456 KB
testcase_06 AC 80 ms
19,136 KB
testcase_07 AC 90 ms
19,888 KB
testcase_08 AC 114 ms
19,392 KB
testcase_09 AC 12 ms
11,788 KB
testcase_10 AC 43 ms
14,488 KB
testcase_11 AC 57 ms
15,548 KB
testcase_12 AC 43 ms
14,904 KB
testcase_13 AC 113 ms
19,500 KB
testcase_14 AC 79 ms
18,540 KB
testcase_15 AC 49 ms
15,460 KB
testcase_16 AC 27 ms
13,168 KB
testcase_17 AC 36 ms
13,804 KB
testcase_18 AC 71 ms
17,016 KB
testcase_19 AC 53 ms
15,776 KB
testcase_20 AC 42 ms
14,436 KB
testcase_21 AC 39 ms
14,276 KB
testcase_22 AC 20 ms
12,656 KB
testcase_23 AC 19 ms
12,232 KB
testcase_24 AC 51 ms
16,204 KB
testcase_25 AC 108 ms
22,460 KB
testcase_26 AC 90 ms
20,256 KB
testcase_27 AC 58 ms
17,208 KB
testcase_28 AC 89 ms
19,064 KB
testcase_29 AC 104 ms
20,480 KB
testcase_30 AC 24 ms
12,828 KB
testcase_31 AC 83 ms
18,580 KB
testcase_32 AC 41 ms
14,312 KB
testcase_33 AC 121 ms
20,328 KB
testcase_34 AC 133 ms
23,552 KB
testcase_35 AC 84 ms
18,684 KB
testcase_36 AC 121 ms
22,656 KB
testcase_37 AC 91 ms
19,668 KB
testcase_38 AC 41 ms
14,368 KB
testcase_39 AC 51 ms
15,316 KB
testcase_40 AC 66 ms
16,540 KB
testcase_41 AC 25 ms
12,788 KB
testcase_42 AC 59 ms
15,736 KB
testcase_43 AC 66 ms
16,428 KB
testcase_44 AC 106 ms
20,564 KB
testcase_45 AC 112 ms
21,252 KB
testcase_46 AC 116 ms
22,852 KB
testcase_47 AC 54 ms
15,656 KB
testcase_48 AC 41 ms
14,480 KB
testcase_49 AC 98 ms
18,996 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.shift 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