結果

問題 No.549 素材合成システム
ユーザー RisenRisen
提出日時 2017-07-28 22:47:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 114,360 KB
実行使用メモリ 34,284 KB
最終ジャッジ日時 2024-10-10 03:55:56
合計ジャッジ時間 19,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
27,424 KB
testcase_01 AC 34 ms
27,612 KB
testcase_02 AC 33 ms
25,316 KB
testcase_03 AC 34 ms
25,516 KB
testcase_04 AC 33 ms
25,572 KB
testcase_05 AC 34 ms
25,444 KB
testcase_06 AC 34 ms
25,656 KB
testcase_07 AC 540 ms
32,368 KB
testcase_08 AC 539 ms
32,364 KB
testcase_09 AC 539 ms
32,488 KB
testcase_10 AC 540 ms
32,376 KB
testcase_11 AC 539 ms
32,368 KB
testcase_12 AC 541 ms
32,236 KB
testcase_13 AC 542 ms
32,368 KB
testcase_14 AC 540 ms
32,496 KB
testcase_15 AC 540 ms
32,396 KB
testcase_16 AC 542 ms
34,284 KB
testcase_17 AC 517 ms
33,372 KB
testcase_18 AC 356 ms
28,580 KB
testcase_19 AC 477 ms
30,888 KB
testcase_20 AC 455 ms
33,028 KB
testcase_21 AC 434 ms
30,436 KB
testcase_22 AC 406 ms
32,368 KB
testcase_23 AC 521 ms
32,536 KB
testcase_24 AC 460 ms
31,612 KB
testcase_25 AC 379 ms
31,584 KB
testcase_26 AC 518 ms
32,032 KB
testcase_27 AC 402 ms
31,804 KB
testcase_28 AC 34 ms
27,428 KB
testcase_29 AC 34 ms
25,572 KB
testcase_30 AC 34 ms
27,352 KB
testcase_31 AC 516 ms
31,200 KB
testcase_32 AC 516 ms
31,080 KB
testcase_33 AC 515 ms
31,092 KB
testcase_34 AC 514 ms
31,216 KB
testcase_35 AC 520 ms
32,876 KB
testcase_36 AC 527 ms
31,324 KB
testcase_37 AC 523 ms
30,960 KB
testcase_38 AC 34 ms
27,300 KB
testcase_39 AC 33 ms
25,576 KB
testcase_40 AC 239 ms
28,008 KB
testcase_41 AC 86 ms
26,944 KB
testcase_42 AC 39 ms
25,832 KB
testcase_43 AC 107 ms
26,644 KB
testcase_44 AC 47 ms
25,952 KB
testcase_45 AC 131 ms
28,624 KB
testcase_46 AC 75 ms
26,600 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.Collections.Generic;
using System.Linq;

class Solution
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine());
        var x = Console.ReadLine().Split(' ').Select(int.Parse).OrderBy(i => i).ToList();

        while (x.Count > 1)
        {
            x[x.Count - 1] += x[0] / 2;
            x.RemoveAt(0);
        }

        Console.WriteLine(x.First());
    }
}
0