結果

問題 No.5 数字のブロック
ユーザー takosama312
提出日時 2016-01-31 16:45:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 111,924 KB
実行使用メモリ 28,140 KB
最終ジャッジ日時 2024-11-18 08:08:21
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No._5_数字のブロック
{
    class Program
    {
        static void Main(string[] args)
        {
            var numList = new List<int>() { int.Parse(Console.ReadLine()) }; Console.ReadLine();
            var line = Console.ReadLine().Split(' ').Select(int.Parse).OrderBy(_ => _).ToList();
            line.Aggregate((a, b) => { if (a + b <= numList[0]) numList.Add(a + b); return a + b; });
            Console.WriteLine(numList.Count);
        }
    }
}
0