結果

問題 No.5 数字のブロック
ユーザー うわばみうわばみ
提出日時 2020-04-29 12:47:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 114,612 KB
実行使用メモリ 29,864 KB
最終ジャッジ日時 2024-11-28 02:05:23
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge1 / 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.Linq;

class Program
{
    static void Main()
    {
        var box = int.Parse(Console.ReadLine());
        var n = int.Parse(Console.ReadLine());
        var list = Console.ReadLine().Split().Select(a => int.Parse(a)).ToArray();
        Array.Sort(list);
        int count = 0;
        int size = 0;
        for(int i = 0; i < list.Length; i++)
        {
            size += list[i];
            if(size <= box)
            {
                count++;
            }
            else
            {
                break;
            }
        }
        Console.WriteLine($"{count}");
    }
}
0