結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
22,912 KB
testcase_01 AC 60 ms
12,824 KB
testcase_02 AC 95 ms
13,968 KB
testcase_03 AC 224 ms
16,304 KB
testcase_04 AC 818 ms
23,552 KB
testcase_05 AC 121 ms
15,412 KB
testcase_06 AC 577 ms
18,064 KB
testcase_07 AC 645 ms
18,952 KB
testcase_08 AC 128 ms
19,360 KB
testcase_09 AC 11 ms
11,652 KB
testcase_10 AC 63 ms
14,384 KB
testcase_11 AC 110 ms
15,608 KB
testcase_12 AC 159 ms
14,636 KB
testcase_13 AC 300 ms
19,592 KB
testcase_14 AC 260 ms
18,160 KB
testcase_15 AC 144 ms
15,448 KB
testcase_16 AC 51 ms
12,848 KB
testcase_17 AC 59 ms
13,664 KB
testcase_18 AC 206 ms
16,972 KB
testcase_19 AC 222 ms
15,612 KB
testcase_20 AC 114 ms
14,124 KB
testcase_21 AC 70 ms
14,252 KB
testcase_22 AC 34 ms
12,544 KB
testcase_23 AC 24 ms
12,232 KB
testcase_24 AC 234 ms
15,120 KB
testcase_25 AC 985 ms
19,524 KB
testcase_26 AC 714 ms
18,600 KB
testcase_27 AC 323 ms
15,904 KB
testcase_28 AC 506 ms
18,760 KB
testcase_29 AC 742 ms
19,328 KB
testcase_30 AC 37 ms
12,704 KB
testcase_31 AC 333 ms
18,244 KB
testcase_32 AC 92 ms
14,372 KB
testcase_33 AC 467 ms
19,736 KB
testcase_34 AC 740 ms
23,444 KB
testcase_35 AC 448 ms
18,616 KB
testcase_36 AC 927 ms
22,420 KB
testcase_37 AC 655 ms
18,896 KB
testcase_38 AC 113 ms
14,172 KB
testcase_39 AC 91 ms
15,400 KB
testcase_40 AC 292 ms
16,268 KB
testcase_41 AC 34 ms
12,884 KB
testcase_42 AC 145 ms
15,652 KB
testcase_43 AC 211 ms
16,536 KB
testcase_44 AC 759 ms
19,528 KB
testcase_45 AC 879 ms
19,704 KB
testcase_46 AC 1,081 ms
19,828 KB
testcase_47 AC 181 ms
15,572 KB
testcase_48 AC 126 ms
14,200 KB
testcase_49 AC 209 ms
18,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map &:to_i
A = gets.split.map(&:to_i).sort.reverse
m = N - M
ans = A.dup
res = A.inject(:^)
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
    ans.delete_at(ans.bsearch_index{|a|a<=n})
    m -= 1
    if m == 0
      puts ans*" "
      exit
    end
  }
}
puts ans.max(M)*" "
0