結果

問題 No.549 素材合成システム
ユーザー bluemeganebluemegane
提出日時 2018-09-11 16:23:26
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 107,872 KB
実行使用メモリ 32,088 KB
最終ジャッジ日時 2024-06-23 16:21:33
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,916 KB
testcase_01 AC 24 ms
22,068 KB
testcase_02 AC 24 ms
23,916 KB
testcase_03 AC 24 ms
24,112 KB
testcase_04 AC 26 ms
26,140 KB
testcase_05 AC 25 ms
24,240 KB
testcase_06 AC 24 ms
23,912 KB
testcase_07 AC 54 ms
29,840 KB
testcase_08 AC 54 ms
29,724 KB
testcase_09 AC 53 ms
29,832 KB
testcase_10 AC 52 ms
31,764 KB
testcase_11 AC 52 ms
30,092 KB
testcase_12 AC 52 ms
29,824 KB
testcase_13 AC 51 ms
29,824 KB
testcase_14 AC 54 ms
29,464 KB
testcase_15 AC 54 ms
29,580 KB
testcase_16 AC 51 ms
29,460 KB
testcase_17 AC 49 ms
30,712 KB
testcase_18 AC 43 ms
25,968 KB
testcase_19 AC 48 ms
30,528 KB
testcase_20 AC 48 ms
28,456 KB
testcase_21 AC 50 ms
29,940 KB
testcase_22 AC 51 ms
32,088 KB
testcase_23 AC 54 ms
29,868 KB
testcase_24 AC 51 ms
29,204 KB
testcase_25 AC 49 ms
31,344 KB
testcase_26 AC 50 ms
29,500 KB
testcase_27 AC 48 ms
29,240 KB
testcase_28 AC 23 ms
23,920 KB
testcase_29 AC 23 ms
23,916 KB
testcase_30 AC 22 ms
23,984 KB
testcase_31 AC 46 ms
28,412 KB
testcase_32 AC 47 ms
28,556 KB
testcase_33 AC 47 ms
28,436 KB
testcase_34 AC 49 ms
28,800 KB
testcase_35 AC 55 ms
31,892 KB
testcase_36 AC 47 ms
28,540 KB
testcase_37 AC 47 ms
28,672 KB
testcase_38 AC 23 ms
24,048 KB
testcase_39 AC 24 ms
23,788 KB
testcase_40 AC 43 ms
26,184 KB
testcase_41 AC 35 ms
27,644 KB
testcase_42 AC 29 ms
24,560 KB
testcase_43 AC 34 ms
25,420 KB
testcase_44 AC 29 ms
27,408 KB
testcase_45 AC 35 ms
25,092 KB
testcase_46 AC 33 ms
27,316 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);
        var bsum = 0;
        var ans = 0;
        for (int i = 0; i < n; i++)
        {
            var b = a[i] / 2;
            ans = Math.Max(ans, a[i] - b);
            bsum += b;
        }
        Console.WriteLine(ans + bsum);
    }
}
0