結果

問題 No.5 数字のブロック
ユーザー CroweaCrowea
提出日時 2019-06-08 19:59:21
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 584 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 110,344 KB
実行使用メモリ 26,856 KB
最終ジャッジ日時 2024-10-05 23:51:01
合計ジャッジ時間 2,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
22,064 KB
testcase_01 AC 24 ms
26,208 KB
testcase_02 RE -
testcase_03 AC 30 ms
24,620 KB
testcase_04 AC 29 ms
24,752 KB
testcase_05 AC 31 ms
26,856 KB
testcase_06 AC 29 ms
24,424 KB
testcase_07 AC 30 ms
24,692 KB
testcase_08 AC 29 ms
22,836 KB
testcase_09 AC 28 ms
24,620 KB
testcase_10 AC 31 ms
22,580 KB
testcase_11 AC 28 ms
26,628 KB
testcase_12 AC 29 ms
24,560 KB
testcase_13 AC 30 ms
22,576 KB
testcase_14 AC 24 ms
25,960 KB
testcase_15 AC 29 ms
24,428 KB
testcase_16 AC 30 ms
24,560 KB
testcase_17 AC 31 ms
26,848 KB
testcase_18 AC 30 ms
24,680 KB
testcase_19 AC 31 ms
24,712 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 24 ms
23,924 KB
testcase_24 AC 28 ms
24,436 KB
testcase_25 AC 28 ms
24,240 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 30 ms
24,620 KB
testcase_30 AC 28 ms
24,496 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace No._5
{
    class Program
    {
        static void Main(string[] args)
        {
            int L = int.Parse(Console.ReadLine());
            int N = int.Parse(Console.ReadLine());
            var width = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
            Array.Sort(width);
            int weight = 0;

            int i = 0;
            while (weight <= L)
            {
                weight += width[i];
                if (weight > L) break;
                i++;
            }
            Console.WriteLine(i);
        }
    }
}
0