結果

問題 No.5 数字のブロック
ユーザー うわばみ
提出日時 2020-04-29 12:50:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 1,323 ms
コンパイル使用メモリ 107,136 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-11-28 02:09:02
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 < n; i++)
        {
            size += list[i];
            if(size <= box)
            {
                count++;
            }
            else
            {
                break;
            }
        }
        Console.WriteLine($"{count}");
    }
}
0