結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
23,076 KB
testcase_01 AC 26 ms
13,168 KB
testcase_02 AC 38 ms
14,080 KB
testcase_03 AC 65 ms
16,496 KB
testcase_04 AC 133 ms
23,752 KB
testcase_05 AC 50 ms
15,520 KB
testcase_06 AC 81 ms
19,128 KB
testcase_07 AC 88 ms
19,520 KB
testcase_08 AC 113 ms
19,372 KB
testcase_09 AC 11 ms
11,652 KB
testcase_10 AC 43 ms
14,484 KB
testcase_11 AC 56 ms
15,616 KB
testcase_12 AC 43 ms
14,940 KB
testcase_13 AC 114 ms
20,048 KB
testcase_14 AC 76 ms
18,208 KB
testcase_15 AC 49 ms
15,508 KB
testcase_16 AC 26 ms
13,056 KB
testcase_17 AC 36 ms
13,788 KB
testcase_18 AC 71 ms
17,152 KB
testcase_19 AC 54 ms
15,756 KB
testcase_20 AC 41 ms
14,380 KB
testcase_21 AC 40 ms
14,260 KB
testcase_22 AC 21 ms
12,660 KB
testcase_23 AC 18 ms
12,188 KB
testcase_24 AC 51 ms
16,280 KB
testcase_25 AC 108 ms
22,368 KB
testcase_26 AC 89 ms
20,152 KB
testcase_27 AC 60 ms
17,004 KB
testcase_28 AC 92 ms
19,032 KB
testcase_29 AC 105 ms
20,388 KB
testcase_30 AC 24 ms
12,796 KB
testcase_31 AC 85 ms
18,544 KB
testcase_32 AC 41 ms
14,196 KB
testcase_33 AC 124 ms
20,328 KB
testcase_34 AC 135 ms
23,588 KB
testcase_35 AC 84 ms
18,712 KB
testcase_36 AC 121 ms
22,488 KB
testcase_37 AC 90 ms
19,692 KB
testcase_38 AC 41 ms
14,376 KB
testcase_39 AC 52 ms
15,392 KB
testcase_40 AC 65 ms
16,616 KB
testcase_41 AC 23 ms
12,884 KB
testcase_42 AC 57 ms
15,600 KB
testcase_43 AC 65 ms
16,368 KB
testcase_44 AC 107 ms
20,524 KB
testcase_45 AC 113 ms
21,224 KB
testcase_46 AC 116 ms
22,580 KB
testcase_47 AC 54 ms
15,600 KB
testcase_48 AC 43 ms
14,572 KB
testcase_49 AC 99 ms
18,916 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.each{|n|
    res ^= n
    sub << n
    m -= 1
    if m == 0
      puts (A - sub)*" "
      exit
    end
  }
}
puts (A - sub).max(M)*" "
0