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