結果
問題 | No.21 平均の差 |
ユーザー | Himatsubushin |
提出日時 | 2019-01-09 14:47:21 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 1,275 bytes |
コンパイル時間 | 805 ms |
コンパイル使用メモリ | 111,228 KB |
実行使用メモリ | 25,816 KB |
最終ジャッジ日時 | 2024-05-03 03:51:21 |
合計ジャッジ時間 | 1,477 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
24,108 KB |
testcase_01 | AC | 24 ms
23,776 KB |
testcase_02 | AC | 20 ms
23,984 KB |
testcase_03 | AC | 21 ms
23,772 KB |
testcase_04 | AC | 19 ms
23,600 KB |
testcase_05 | AC | 20 ms
25,816 KB |
testcase_06 | AC | 20 ms
23,724 KB |
testcase_07 | AC | 20 ms
23,524 KB |
testcase_08 | AC | 20 ms
23,756 KB |
testcase_09 | AC | 20 ms
23,856 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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) { for (int i = 0; i < num.Length - 1; i++) { int sum = 0, count = 0; for (int j = i; j < num.Length; j++) { if (j == a || j == b) continue; sum += num[j]; count++; double ave = (double)sum / (double)count; if (max < ave) max = ave; if (min > ave) min = ave; } } } } }