結果

問題 No.268 ラッピング(Easy)
ユーザー NoNo
提出日時 2015-11-04 17:10:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 861 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 115,716 KB
実行使用メモリ 26,228 KB
最終ジャッジ日時 2024-09-13 12:24:58
合計ジャッジ時間 1,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
21,944 KB
testcase_01 AC 28 ms
24,304 KB
testcase_02 AC 28 ms
24,052 KB
testcase_03 AC 29 ms
24,372 KB
testcase_04 AC 29 ms
26,228 KB
testcase_05 AC 28 ms
26,084 KB
testcase_06 AC 27 ms
24,288 KB
testcase_07 AC 27 ms
24,368 KB
testcase_08 AC 27 ms
24,172 KB
testcase_09 AC 28 ms
24,164 KB
testcase_10 AC 28 ms
23,912 KB
testcase_11 AC 28 ms
24,180 KB
testcase_12 AC 28 ms
24,296 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 ForYukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] a = Console.ReadLine().Split();
            int w = int.Parse(a[0]);
            int h = int.Parse(a[1]);
            int d = int.Parse(a[2]);

            int[] box = { (h + d) * 2, (w + h) * 2, (w + d) * 2 };
            var C = ConvertStringArrayToIntArray(Console.ReadLine().Split());

            Array.Sort(box);
            Array.Sort(C);

            int sum = box[2] * C[0] + box[1] * C[1] + box[0] * C[2];

            Console.WriteLine(sum);
        }

        static int[] ConvertStringArrayToIntArray(string[] array)
        {
            return Array.ConvertAll(array, str => int.Parse(str));
        }
    }
}
0