結果

問題 No.549 素材合成システム
ユーザー 14番14番
提出日時 2017-07-28 22:39:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,042 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 116,148 KB
実行使用メモリ 35,740 KB
最終ジャッジ日時 2024-10-10 03:07:45
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
25,392 KB
testcase_01 AC 34 ms
25,132 KB
testcase_02 AC 34 ms
29,312 KB
testcase_03 AC 34 ms
25,452 KB
testcase_04 AC 35 ms
25,012 KB
testcase_05 AC 34 ms
25,464 KB
testcase_06 AC 33 ms
23,472 KB
testcase_07 AC 113 ms
33,400 KB
testcase_08 AC 114 ms
35,448 KB
testcase_09 AC 113 ms
33,652 KB
testcase_10 AC 113 ms
33,272 KB
testcase_11 AC 114 ms
33,528 KB
testcase_12 AC 112 ms
33,524 KB
testcase_13 AC 112 ms
33,400 KB
testcase_14 AC 114 ms
35,192 KB
testcase_15 AC 113 ms
31,352 KB
testcase_16 AC 112 ms
33,272 KB
testcase_17 AC 87 ms
34,288 KB
testcase_18 AC 78 ms
29,368 KB
testcase_19 AC 86 ms
31,936 KB
testcase_20 AC 85 ms
31,888 KB
testcase_21 AC 88 ms
33,528 KB
testcase_22 AC 86 ms
32,888 KB
testcase_23 AC 93 ms
35,740 KB
testcase_24 AC 105 ms
30,976 KB
testcase_25 AC 99 ms
32,244 KB
testcase_26 AC 110 ms
33,324 KB
testcase_27 AC 100 ms
34,548 KB
testcase_28 AC 33 ms
25,452 KB
testcase_29 AC 33 ms
25,392 KB
testcase_30 AC 34 ms
25,472 KB
testcase_31 AC 86 ms
34,292 KB
testcase_32 AC 86 ms
30,316 KB
testcase_33 AC 87 ms
30,324 KB
testcase_34 AC 87 ms
34,156 KB
testcase_35 AC 106 ms
33,784 KB
testcase_36 AC 94 ms
32,240 KB
testcase_37 AC 94 ms
32,360 KB
testcase_38 AC 33 ms
25,396 KB
testcase_39 AC 33 ms
25,140 KB
testcase_40 AC 82 ms
28,976 KB
testcase_41 AC 55 ms
26,764 KB
testcase_42 AC 39 ms
27,748 KB
testcase_43 AC 54 ms
26,736 KB
testcase_44 AC 42 ms
26,540 KB
testcase_45 AC 58 ms
27,244 KB
testcase_46 AC 48 ms
26,408 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.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{

    public void Proc()
    {
        int inputCount = int.Parse(Reader.ReadLine());
        long[] items = Reader.ReadLine().Split(' ').Select(a => long.Parse(a)).OrderByDescending(a => a).ToArray();
        long ans = items[0];
        for (int i = 1; i < items.Length; i++) {
            ans += items[i] / 2;
        }
        Console.WriteLine(ans);
    }


    public class Reader
	{
		private static StringReader sr;
		public static bool IsDebug = false;
		public static string ReadLine()
		{
			if (IsDebug)
			{
				if (sr == null)
				{
					sr = new StringReader(InputText.Trim());
				}
				return sr.ReadLine();
			}
			else
			{
				return Console.ReadLine();
			}
		}
		private static string InputText = @"


16
5 48 74 84 94 13 24 15 92 79 74 89 32 30 5 24


";
	}

	public static void Main(string[] args)
	{
#if DEBUG
		Reader.IsDebug = true;
#endif
		Program prg = new Program();
		prg.Proc();
	}
}
0