結果
問題 | No.198 キャンディー・ボックス2 |
ユーザー | nanophoto12 |
提出日時 | 2015-12-13 23:00:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,229 bytes |
コンパイル時間 | 1,052 ms |
コンパイル使用メモリ | 107,392 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-09-15 11:48:25 |
合計ジャッジ時間 | 2,980 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
18,560 KB |
testcase_01 | AC | 25 ms
18,688 KB |
testcase_02 | WA | - |
testcase_03 | AC | 25 ms
18,688 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 25 ms
18,560 KB |
testcase_07 | WA | - |
testcase_08 | AC | 24 ms
18,432 KB |
testcase_09 | AC | 25 ms
18,432 KB |
testcase_10 | AC | 25 ms
18,816 KB |
testcase_11 | AC | 24 ms
18,816 KB |
testcase_12 | AC | 25 ms
18,560 KB |
testcase_13 | WA | - |
testcase_14 | AC | 25 ms
18,560 KB |
testcase_15 | AC | 25 ms
18,688 KB |
testcase_16 | AC | 25 ms
18,688 KB |
testcase_17 | AC | 24 ms
18,432 KB |
testcase_18 | AC | 24 ms
18,560 KB |
testcase_19 | WA | - |
testcase_20 | AC | 24 ms
18,560 KB |
testcase_21 | WA | - |
testcase_22 | AC | 25 ms
18,688 KB |
testcase_23 | WA | - |
testcase_24 | AC | 25 ms
18,816 KB |
testcase_25 | WA | - |
testcase_26 | AC | 24 ms
18,816 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 25 ms
18,688 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace No198 { class MainClass { private static long Calculate(long target, long[] values) { return values.Sum (v => Math.Abs (target - v)); } public static void Main (string[] args) { var b = Convert.ToInt64(Console.ReadLine ()); var n = Convert.ToInt32 (Console.ReadLine ()); long[] data = new long[n]; for (int i = 0; i < n; i++) { data [i] = Convert.ToInt64 (Console.ReadLine ()); } var sum = data.Sum () + b; var maxValue = sum / n + 1; var minValue = data.Min (); var midValue = (maxValue + minValue) / 2L; var min = long.MaxValue; do { var maxOperation = Calculate (maxValue, data); var minOperation = Calculate (minValue, data); var midOperation = Calculate (midValue, data); min = Math.Min (min, maxOperation); min = Math.Min (min, minOperation); min = Math.Min (min, midOperation); if (maxOperation > minOperation) { maxValue = midValue; midValue = (maxValue + minValue) / 2; } else { minValue = midValue; midValue = (maxValue + minValue) / 2; } } while (maxValue - minValue > 1); Console.WriteLine (min.ToString ()); } } }