結果

問題 No.91 赤、緑、青の石
ユーザー NoNo
提出日時 2015-06-11 18:46:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 1,124 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 111,180 KB
実行使用メモリ 31,388 KB
最終ジャッジ日時 2024-06-24 06:49:52
合計ジャッジ時間 7,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
29,196 KB
testcase_01 AC 247 ms
31,128 KB
testcase_02 AC 149 ms
29,208 KB
testcase_03 AC 240 ms
29,088 KB
testcase_04 AC 134 ms
29,208 KB
testcase_05 AC 291 ms
31,252 KB
testcase_06 AC 102 ms
31,000 KB
testcase_07 AC 29 ms
24,904 KB
testcase_08 AC 29 ms
24,708 KB
testcase_09 AC 31 ms
25,392 KB
testcase_10 AC 31 ms
25,088 KB
testcase_11 AC 103 ms
28,948 KB
testcase_12 AC 268 ms
28,956 KB
testcase_13 AC 292 ms
30,868 KB
testcase_14 AC 205 ms
31,120 KB
testcase_15 AC 315 ms
29,076 KB
testcase_16 AC 29 ms
24,880 KB
testcase_17 AC 31 ms
25,264 KB
testcase_18 AC 30 ms
26,940 KB
testcase_19 AC 30 ms
27,192 KB
testcase_20 AC 30 ms
24,832 KB
testcase_21 AC 30 ms
25,136 KB
testcase_22 AC 30 ms
27,068 KB
testcase_23 AC 31 ms
27,192 KB
testcase_24 AC 30 ms
25,152 KB
testcase_25 AC 464 ms
31,116 KB
testcase_26 AC 452 ms
29,208 KB
testcase_27 AC 29 ms
24,836 KB
testcase_28 AC 68 ms
29,212 KB
testcase_29 AC 110 ms
28,956 KB
testcase_30 AC 348 ms
31,252 KB
testcase_31 AC 443 ms
31,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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