에서 AtCoder Beginners Selection (ABC088B - Card Game for Two)

준비



C#에서 AtCoder 데뷔 준비
나중에 AtCoder Beginners Selection을 해 보았습니다.

문제문



ABC088B - Card Game for Two
h tps // 아 t 여기 r. jp / sts / a bs / sks / a bc088_b

제출 결과


using System;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        int n = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        Array.Sort(a);
        Array.Reverse(a);
        int Alice = 0;
        int Bob = 0;
        for (int i = 0; i < n; i++)
        {
            if (i % 2 == 0)
            {
                Alice += a[i];
            }
            else
            {
                Bob += a[i];
            }
        }
        int tensa = Alice - Bob;
        Console.WriteLine($"{tensa}");
    }
}

테스트 실행





좋은 웹페이지 즐겨찾기