A1380.[COCI-2008_2009-contest3]#6 PET

省选/NOI-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

In the popular show "Dinner for Five", five contestants compete in preparing culinary delights. Every evening one of them makes dinner and each of other four then grades it on a scale from 1 to
5.
The number of points a contestant gets is equal to the sum of grades they got. The winner of the show is of course the contestant that gets the most points.
Write a program that determines the winner and how many points they got.

输入格式

Five lines, each containing 4 integers, the grades a contestant got.
The contestants are numbered 1 to 5 in the order in which their grades were given.
The input data will guarantee that the solution is unique.

输出格式

Output on a single line the winner's number and their points, separated by a space.

输入输出样例

  • 输入#1

    5 4 4 5 
    5 4 4 4 
    5 5 4 4 
    5 5 5 4 
    4 4 4 5 

    输出#1

    4 19
  • 输入#2

    4 4 3 3 
    5 4 3 5 
    5 5 2 4 
    5 5 5 1 
    4 4 4 4 

    输出#2

    2 17

说明/提示

首页