c# | 백준 | 2953

Algorithm 2019. 10. 18. 10:20
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace _2953
{
    class Program
    {
        static void Main(string[] args)
        {
            List<int[]> list = new List<int[]>();
            List<int> totalList = new List<int>();
            for (int i = 0; i < 5; i++) {
                var input = Console.ReadLine();
                var arr = input.Split(' ');
                int[] arr2 = new int[arr.Length];
                int[] arr3 = new int[arr.Length];
                int total = 0;
                for (int j = 0; j < arr.Length; j++) {
                    arr2[j] = int.Parse(arr[j]);
                    total += arr2[j];
                }
                totalList.Add(total);
                list.Add(arr2);
            }
 
            int score = 0;
            int idx = 0;
            for (int i = 0; i < totalList.Count; i++)
            {
                if (score < totalList[i])
                {
                    score = totalList[i];
                    idx = i;
                }
            }
 
            Console.WriteLine("{0} {1}", idx + 1, score);
        }
    }
}
 
 
 
반응형

'Algorithm' 카테고리의 다른 글

원형배열로 구현한 Queue  (0) 2020.10.07
C#으로 구현한 링크드리스트  (0) 2020.04.16
C# | 백준 | 3052  (0) 2019.10.16
C# | 백준 | 10817  (0) 2019.10.15
C# | 백준 | 2577  (0) 2019.10.15
: