結果

問題 No.21 平均の差
ユーザー HimatsubushinHimatsubushin
提出日時 2019-01-09 14:35:54
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,160 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 108,820 KB
実行使用メモリ 25,932 KB
最終ジャッジ日時 2024-05-03 03:51:18
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,904 KB
testcase_01 AC 24 ms
24,028 KB
testcase_02 WA -
testcase_03 AC 24 ms
23,644 KB
testcase_04 AC 24 ms
25,932 KB
testcase_05 AC 24 ms
23,600 KB
testcase_06 AC 23 ms
23,640 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace No021
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int k = int.Parse(Console.ReadLine());
            int[] num = new int[n];
            double max = 0.0, min = 1000.0;

            for (int i = 0; i < n; i++)
                num[i] = int.Parse(Console.ReadLine());

            for (int i = 0; i < n - 1; i++)
                for (int j = i + 1; j < n; j++)
                    Search(num, i, j, ref max, ref min);

            Console.WriteLine((int)Math.Ceiling(max - min));
        }

        static void Search(int[] num, int a, int b, ref double max, ref double min)
        {
            int sum = 0, count = 0;
            double ave;

            for (int i = 0; i < num.Length; i++)
            {
                if (i == a || i == b)
                    continue;

                sum += num[i];
                count++;
                ave = (double)sum / (double)count;

                if (max < ave)
                    max = ave;
                if (min > ave)
                    min = ave;
            }
        }
    }
}
0