結果

問題 No.91 赤、緑、青の石
ユーザー No
提出日時 2015-06-11 18:33:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 473 ms / 5,000 ms
コード長 1,127 bytes
コンパイル時間 2,765 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-06-24 06:49:10
合計ジャッジ時間 7,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace foryuki
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] c = ConvertStringArrayToIntArray(Console.ReadLine().Split());
            Array.Sort(c);

            while (c[2] - c[0] >= 2)
            {
                c[2] -= 2;
                c[0] += 1;
                Array.Sort(c);
            }
            Console.WriteLine(c.Min());
        }


        //-------------------------------------------------------------

        static int[] ConvertStringArrayToIntArray(string[] str)
        {
            int[] b = Array.ConvertAll<string, int>(str, delegate(string value)
                {
                    return int.Parse(value);
                });
            return b;
        }

        static List<int> ConvertStringArrayToIntList(string[] str)
        {
            var list = new List<int>();
            foreach (var c in str)
            {
                list.Add(int.Parse(c));
            }
            return list;
        }
    }
}
0