为了用事实说明挖掘机技术到底哪家强,PAT 组织了一场挖掘机技能大赛。现请你根据比赛结果统计出技术最强的那个学校。
输入格式:

输入在第 1 行给出不超过 10​的5次方​​ 的正整数 N,即参赛人数。随后 N 行,每行给出一位参赛者的信息和成绩,包括其所代表的学校的编号(从 1 开始连续编号)、及其比赛成绩(百分制),中间以空格分隔。
输出格式:

在一行中给出总得分最高的学校的编号、及其总分,中间以空格分隔。题目保证答案唯一,没有并列。


#include <stdio.h>
const int maxn=10010;       //不超过10的5次方
int school[maxn]={0};       //定义数组存放
int main(){
    int n,schID,score;
    scanf("%d",&n);
    for(int i=0;i<n;i++){       //循环不大于行号   
        scanf("%d%d",&schID,&score);
        school[schID]+=score;   //学校schID的总分增加score
    }
    int k=1,MAX=-1;             //k为id,MAX为最高学校总分
    for(int i=1;i<=n;i++){
        if(school[i]>MAX){
            MAX=school[i];
            k=i;
        }
    }
    printf("%d %d",k,MAX);
    return 0;
}


procedure TForm1.FormCreate(Sender: TObject);
  var m,n,k:integer;
  begin
    randomize;
    m:=random(50);
    n:=random(50);
    k:=random(2);
    label1.Caption:=inttostr(m);
    label2.Caption:=inttostr(n);
    label3.Caption:=inttostr(k);
    if k=1 then
      label2.Caption:='+'
    else
      label2.Caption:='-';
end;

procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
  var answer:integer;
  begin
    if key=chr(VK_RETURN) then
      begin
        if label2.Caption='+' then
          answer:=strtoint(label1.Caption)+strtoint(label3.Caption)
        else
          answer:=strtoint(label1.Caption)-strtoint(label3.Caption);
        if answer=strtoint(edit1.Text) then
          begin
            showmessage('回答正确');
            button1.SetFocus;
          end
        else
          begin
            showmessage('回答错误');
            edit1.SetFocus;
          end;
          edit1.SelectAll;
      end;
end;


#include <stdio.h>

int gcd(int a, int b){
    if(b==0)    return a;
    else return gcd(b, a%b);
}

int main(){
    int m, n;
    while(scanf("%d%d",&m,&n)!=EOF){
        printf("%dn",gcd(m,n));
    }

    return 0;
}
辗转相除法:49 14
49=14*3+7 (42,49)(42,7)
42=7*6 (42,6)(7)