結果

問題 No.5001 排他的論理和でランニング
ユーザー るさるさ
提出日時 2020-06-27 19:58:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 1,500 ms
コード長 224 bytes
コンパイル時間 243 ms
実行使用メモリ 85,568 KB
スコア 35,093,958
最終ジャッジ日時 2020-06-27 19:59:02
ジャッジサーバーID
(参考情報)
judge7 / judge9
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
85,308 KB
testcase_01 AC 154 ms
70,348 KB
testcase_02 AC 161 ms
70,524 KB
testcase_03 AC 189 ms
76,856 KB
testcase_04 AC 241 ms
85,568 KB
testcase_05 AC 179 ms
72,632 KB
testcase_06 AC 186 ms
79,492 KB
testcase_07 AC 211 ms
80,812 KB
testcase_08 AC 243 ms
82,872 KB
testcase_09 AC 118 ms
67,332 KB
testcase_10 AC 178 ms
71,304 KB
testcase_11 AC 184 ms
73,944 KB
testcase_12 AC 162 ms
72,636 KB
testcase_13 AC 251 ms
82,548 KB
testcase_14 AC 200 ms
78,448 KB
testcase_15 AC 172 ms
73,156 KB
testcase_16 AC 156 ms
70,364 KB
testcase_17 AC 171 ms
70,260 KB
testcase_18 AC 197 ms
77,388 KB
testcase_19 AC 179 ms
73,688 KB
testcase_20 AC 173 ms
71,632 KB
testcase_21 AC 170 ms
70,776 KB
testcase_22 AC 154 ms
69,720 KB
testcase_23 AC 152 ms
69,488 KB
testcase_24 AC 165 ms
73,952 KB
testcase_25 AC 204 ms
83,460 KB
testcase_26 AC 192 ms
80,816 KB
testcase_27 AC 180 ms
76,852 KB
testcase_28 AC 212 ms
80,552 KB
testcase_29 AC 208 ms
82,152 KB
testcase_30 AC 164 ms
69,864 KB
testcase_31 AC 207 ms
79,232 KB
testcase_32 AC 170 ms
71,308 KB
testcase_33 AC 246 ms
83,992 KB
testcase_34 AC 252 ms
85,568 KB
testcase_35 AC 207 ms
79,492 KB
testcase_36 AC 223 ms
83,992 KB
testcase_37 AC 200 ms
80,812 KB
testcase_38 AC 167 ms
71,576 KB
testcase_39 AC 181 ms
72,628 KB
testcase_40 AC 182 ms
76,852 KB
testcase_41 AC 162 ms
70,072 KB
testcase_42 AC 184 ms
73,692 KB
testcase_43 AC 194 ms
76,592 KB
testcase_44 AC 214 ms
82,132 KB
testcase_45 AC 222 ms
83,724 KB
testcase_46 AC 219 ms
83,984 KB
testcase_47 AC 183 ms
73,944 KB
testcase_48 AC 167 ms
71,840 KB
testcase_49 AC 228 ms
80,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=list(map(int,input().split()))
a=list(map(int,input().split()))
a.sort()
a.reverse()
t=0
s=[]
l=0
for i in range(n):
  if (t<t^a[i]) or (n-i+l==m):
    s.append(a[i])
    t=t^a[i]
    l+=1

for i in s:
  print(i,end=" ")
0