본문 바로가기

2021동계모각코

2021동계모각코 1회차 결과

 

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

namespace boj
{
    class Program
    {
        static void Main(string[] args)
        {
            int A = int.Parse(Console.ReadLine());
            int[] height = new int[A];
            int[] weight = new int[A];
            int cnt = 0;

            for (int i = 0; i < A; i++) {
                string write = Console.ReadLine();
                height[i] = int.Parse(write.Split()[0]);
                weight[i] = int.Parse(write.Split()[1]);
            }
            for (int i = 0; i < A; i++)
            {
                cnt = 0;
                for (int j = 0; j < A; j++)
                {
                    if (height[i] < height[j] && weight[i] < weight[j])
                    {
                        cnt++;
                    }
                }
                Console.WriteLine(cnt + 1);
            }
        }
    }
}

https://www.acmicpc.net/problem/7568

 

7568번: 덩치

우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x, y)로 표시된다. 두 사람 A 와 B의 덩

www.acmicpc.net

c#에 대하여 백준을 통하여 감을 잡기위하여 문제를 풀었습니다. 복습을 통하여 학기중 까먹었던 c#을 다시 상기 시키는 계기가 되었습니다.