結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
23,044 KB
testcase_01 AC 28 ms
13,164 KB
testcase_02 AC 36 ms
14,056 KB
testcase_03 AC 65 ms
16,504 KB
testcase_04 AC 129 ms
23,712 KB
testcase_05 AC 50 ms
15,352 KB
testcase_06 AC 78 ms
19,152 KB
testcase_07 AC 87 ms
19,504 KB
testcase_08 AC 109 ms
19,348 KB
testcase_09 AC 11 ms
11,692 KB
testcase_10 AC 41 ms
14,448 KB
testcase_11 AC 55 ms
15,704 KB
testcase_12 AC 43 ms
14,860 KB
testcase_13 AC 110 ms
19,448 KB
testcase_14 AC 76 ms
18,200 KB
testcase_15 AC 49 ms
15,548 KB
testcase_16 AC 26 ms
13,004 KB
testcase_17 AC 35 ms
13,780 KB
testcase_18 AC 70 ms
17,000 KB
testcase_19 AC 52 ms
15,732 KB
testcase_20 AC 40 ms
14,436 KB
testcase_21 AC 39 ms
14,324 KB
testcase_22 AC 20 ms
12,524 KB
testcase_23 AC 17 ms
12,256 KB
testcase_24 AC 50 ms
16,116 KB
testcase_25 AC 105 ms
22,444 KB
testcase_26 AC 87 ms
20,188 KB
testcase_27 AC 58 ms
17,120 KB
testcase_28 AC 87 ms
18,992 KB
testcase_29 AC 100 ms
20,420 KB
testcase_30 AC 23 ms
12,820 KB
testcase_31 AC 79 ms
18,460 KB
testcase_32 AC 40 ms
14,176 KB
testcase_33 AC 118 ms
20,352 KB
testcase_34 AC 130 ms
23,516 KB
testcase_35 AC 82 ms
18,568 KB
testcase_36 AC 118 ms
22,560 KB
testcase_37 AC 88 ms
19,612 KB
testcase_38 AC 40 ms
14,436 KB
testcase_39 AC 49 ms
15,424 KB
testcase_40 AC 62 ms
16,612 KB
testcase_41 AC 23 ms
12,828 KB
testcase_42 AC 56 ms
15,644 KB
testcase_43 AC 63 ms
16,308 KB
testcase_44 AC 104 ms
20,568 KB
testcase_45 AC 110 ms
21,292 KB
testcase_46 AC 110 ms
22,572 KB
testcase_47 AC 53 ms
15,688 KB
testcase_48 AC 42 ms
14,428 KB
testcase_49 AC 96 ms
19,048 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|
  oddp = res & 2**k != 0
  v.pop if oddp
  v.each{|n|
    res ^= n
    sub << n
    m -= 1
    if m == 0
      puts (A - sub)*" "
      exit
    end
  }
}
puts (A - sub).max(M)*" "
0