結果

問題 No.549 素材合成システム
ユーザー mbanmban
提出日時 2017-08-26 15:14:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 2,648 ms
コンパイル使用メモリ 104,320 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-10-15 17:41:38
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,944 KB
testcase_01 AC 24 ms
18,944 KB
testcase_02 AC 25 ms
19,072 KB
testcase_03 AC 26 ms
18,944 KB
testcase_04 AC 24 ms
18,944 KB
testcase_05 AC 24 ms
19,072 KB
testcase_06 AC 25 ms
18,944 KB
testcase_07 AC 78 ms
25,856 KB
testcase_08 AC 76 ms
25,984 KB
testcase_09 AC 73 ms
25,984 KB
testcase_10 AC 73 ms
25,856 KB
testcase_11 AC 75 ms
25,728 KB
testcase_12 AC 74 ms
25,728 KB
testcase_13 AC 75 ms
25,856 KB
testcase_14 AC 75 ms
25,728 KB
testcase_15 AC 76 ms
25,984 KB
testcase_16 AC 76 ms
25,728 KB
testcase_17 AC 61 ms
23,936 KB
testcase_18 AC 57 ms
22,968 KB
testcase_19 AC 60 ms
23,936 KB
testcase_20 AC 59 ms
23,552 KB
testcase_21 AC 63 ms
25,472 KB
testcase_22 AC 62 ms
25,344 KB
testcase_23 AC 68 ms
26,240 KB
testcase_24 AC 70 ms
25,216 KB
testcase_25 AC 63 ms
24,576 KB
testcase_26 AC 71 ms
25,728 KB
testcase_27 AC 65 ms
24,832 KB
testcase_28 AC 25 ms
18,944 KB
testcase_29 AC 24 ms
18,944 KB
testcase_30 AC 24 ms
18,944 KB
testcase_31 AC 58 ms
24,064 KB
testcase_32 AC 59 ms
23,936 KB
testcase_33 AC 61 ms
23,808 KB
testcase_34 AC 60 ms
23,936 KB
testcase_35 AC 66 ms
26,112 KB
testcase_36 AC 64 ms
23,936 KB
testcase_37 AC 62 ms
23,936 KB
testcase_38 AC 26 ms
19,072 KB
testcase_39 AC 26 ms
18,944 KB
testcase_40 AC 56 ms
22,712 KB
testcase_41 AC 42 ms
21,248 KB
testcase_42 AC 32 ms
19,456 KB
testcase_43 AC 42 ms
20,728 KB
testcase_44 AC 33 ms
20,352 KB
testcase_45 AC 45 ms
21,460 KB
testcase_46 AC 40 ms
20,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;

static class Program{
    static void Main(){
        new Magatro().Solve();
    }
}

class Magatro{
    private int N;
    private int[]A;
    public void Solve(){
        N = int.Parse(Console.ReadLine());
        A = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        Array.Sort(A);
        int anser = A[N-1];
        for(int i =0;i<N-1;i++){
            anser+=A[i]/2;
        }
        Console.WriteLine(anser);
    }
}
0