結果

問題 No.21 平均の差
ユーザー nokonokonokonoko
提出日時 2016-10-19 21:42:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 3,007 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 109,996 KB
実行使用メモリ 25,520 KB
最終ジャッジ日時 2023-08-14 17:48:56
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
23,408 KB
testcase_01 AC 69 ms
25,520 KB
testcase_02 AC 68 ms
23,480 KB
testcase_03 AC 65 ms
23,480 KB
testcase_04 AC 65 ms
21,580 KB
testcase_05 AC 67 ms
23,572 KB
testcase_06 AC 66 ms
23,344 KB
testcase_07 AC 67 ms
21,348 KB
testcase_08 AC 67 ms
23,444 KB
testcase_09 AC 67 ms
23,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using LIB;
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;

class Program
{
    public static IO IO = new IO();
    static void Main(string[] args)
    {
        int n = IO.INT();
        int k = IO.INT();
        int[] w = IO.INT(n);
        List<int>[] g = new List<int>[k];
        double[] a = new double[k];
        Array.Sort(w);
        for (int i = 0; i < k - 1; i++)
        {
            g[i] = new List<int>();
            g[i].Add(w[i]);
        }
        for (int i = k; i < n - 1; i++)
        {
            g[k - 2].Add(w[i]);
        }
        g[k - 1] = new List<int>();
        g[k - 1].Add(w[n - 1]);
        for (int i = 0; i < k; i++)
        {
            a[i] = g[i].Average();
        }
        IO.WRITE(Math.Ceiling(a.Max() - a.Min()));
        IO.FLUSH();
    }
}

namespace LIB
{
    public class IO
    {
        private const int WMAX = 1000;
        private StringBuilder S = new StringBuilder();
        private T R<T>(Func<string, T> f) { return f(Console.ReadLine()); }
        private T[] R<T>(Func<string, T> f, char c) { return STRING().Split(c).Select(f).ToArray(); }
        private T[] R<T>(Func<string, T> f, int l) { T[] r = new T[l]; for (int i = 0; i < l; i++) { r[i] = R(f); } return r; }
        private T[][] R<T>(Func<string, T> f, int l, char c) { T[][] r = new T[l][]; for (int i = 0; i < l; i++) { r[i] = R<T>(f, c); } return r; }
        private void W<T>(Func<T, string> f, T v, bool lf = true) { S.Append(f(v)); if (lf == true) { S.Append('\n'); } if (S.Length >= WMAX) { FLUSH(); } }
        public string STRING() { return R(s => s); }
        public string[] STRING(char c) { return R(s => s, c); }
        public string[] STRING(int l) { return R(s => s, l); }
        public string[][] STRING(int l, char c) { return R(s => s, l, c); }
        public int INT() { return R(int.Parse); }
        public int[] INT(char c) { return R(int.Parse, c); }
        public int[] INT(int l) { return R(int.Parse, l); }
        public int[][] INT(int l, char c) { return R(int.Parse, l, c); }
        public long LONG() { return R(long.Parse); }
        public long[] LONG(char c) { return R(long.Parse, c); }
        public long[] LONG(int l) { return R(long.Parse, l); }
        public long[][] LONG(int l, char c) { return R(long.Parse, l, c); }
        public double DOUBLE() { return R(double.Parse); }
        public double[] DOUBLE(char c) { return R(double.Parse, c); }
        public double[] DOUBLE(int l) { return R(double.Parse, l); }
        public double[][] DOUBLE(int l, char c) { return R(double.Parse, l, c); }
        public void WRITE(string s, bool lf = true) { W(v => v, s, lf); }
        public void WRITE(int s, bool lf = true) { W(v => v.ToString(), s, lf); }
        public void WRITE(long s, bool lf = true) { W(v => v.ToString(), s, lf); }
        public void WRITE(double s, bool lf = true) { W(v => v.ToString(), s, lf); }
        public void FLUSH() { Console.Write(S); S.Length = 0; }
    }
}
0