結果

問題 No.5 数字のブロック
ユーザー j1930021j1930021
提出日時 2016-01-08 20:49:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 112,424 KB
実行使用メモリ 30,176 KB
最終ジャッジ日時 2024-11-18 08:02:53
合計ジャッジ時間 2,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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