結果

問題 No.549 素材合成システム
ユーザー bluemeganebluemegane
提出日時 2018-09-11 16:35:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 107,652 KB
実行使用メモリ 32,124 KB
最終ジャッジ日時 2024-06-23 16:36:09
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
26,216 KB
testcase_01 AC 25 ms
24,428 KB
testcase_02 AC 26 ms
26,352 KB
testcase_03 AC 26 ms
24,116 KB
testcase_04 AC 26 ms
22,132 KB
testcase_05 AC 26 ms
24,040 KB
testcase_06 AC 27 ms
24,368 KB
testcase_07 AC 79 ms
29,824 KB
testcase_08 AC 79 ms
29,836 KB
testcase_09 AC 79 ms
30,088 KB
testcase_10 AC 81 ms
29,828 KB
testcase_11 AC 80 ms
30,088 KB
testcase_12 AC 79 ms
30,000 KB
testcase_13 AC 80 ms
32,124 KB
testcase_14 AC 79 ms
29,960 KB
testcase_15 AC 79 ms
31,776 KB
testcase_16 AC 81 ms
31,996 KB
testcase_17 AC 65 ms
28,804 KB
testcase_18 AC 58 ms
26,012 KB
testcase_19 AC 65 ms
30,516 KB
testcase_20 AC 64 ms
28,580 KB
testcase_21 AC 68 ms
30,072 KB
testcase_22 AC 66 ms
27,660 KB
testcase_23 AC 71 ms
28,608 KB
testcase_24 AC 76 ms
29,460 KB
testcase_25 AC 71 ms
29,008 KB
testcase_26 AC 79 ms
29,636 KB
testcase_27 AC 73 ms
31,384 KB
testcase_28 AC 26 ms
24,296 KB
testcase_29 AC 27 ms
24,172 KB
testcase_30 AC 26 ms
24,428 KB
testcase_31 AC 66 ms
28,800 KB
testcase_32 AC 66 ms
28,800 KB
testcase_33 AC 66 ms
26,880 KB
testcase_34 AC 66 ms
28,920 KB
testcase_35 AC 71 ms
30,344 KB
testcase_36 AC 66 ms
28,804 KB
testcase_37 AC 66 ms
28,440 KB
testcase_38 AC 26 ms
24,300 KB
testcase_39 AC 25 ms
24,304 KB
testcase_40 AC 60 ms
26,320 KB
testcase_41 AC 44 ms
25,284 KB
testcase_42 AC 33 ms
26,588 KB
testcase_43 AC 43 ms
25,444 KB
testcase_44 AC 34 ms
24,940 KB
testcase_45 AC 44 ms
23,316 KB
testcase_46 AC 39 ms
25,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        Array.Sort(a);
        var sum = 0;
        for (int i = 0; i < n - 1; i++) sum += a[i] / 2;
        Console.WriteLine(sum + a[n-1]);
    }
}
0