比赛 20111109 评测结果 WWWWWWWAWW
题目名称 游历校园 最终得分 10
用户昵称 Des. 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-11-09 09:43:38
显示代码纯文本
program sent;
var a:array[1..100000]of longint;
    t,k,m,n,i,j:longint;
begin
assign(input,'sent.in');
reset(input);
assign(output,'sent.out');
rewrite(output);
readln(n);
readln(m);
for t:=1 to n do
  begin
    readln(i,j);
    inc(a[i]);
    inc(a[j]);
  end;
k:=0;
for t:=1 to n do
  if odd(a[t]) then inc(k);
if k=0 then writeln(0)
else writeln((k-2)div 2);
close(output);
end.