結果

問題 No.5 数字のブロック
ユーザー arasabakiarasabaki
提出日時 2016-03-08 23:00:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 615 bytes
コンパイル時間 1,519 ms
コンパイル使用メモリ 112,000 KB
実行使用メモリ 28,316 KB
最終ジャッジ日時 2024-11-18 08:19:24
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,260 KB
testcase_01 AC 32 ms
25,264 KB
testcase_02 AC 31 ms
25,332 KB
testcase_03 AC 41 ms
25,740 KB
testcase_04 AC 39 ms
28,076 KB
testcase_05 AC 40 ms
26,100 KB
testcase_06 AC 41 ms
28,144 KB
testcase_07 AC 39 ms
25,972 KB
testcase_08 AC 41 ms
26,104 KB
testcase_09 AC 38 ms
23,856 KB
testcase_10 AC 42 ms
28,316 KB
testcase_11 AC 39 ms
25,840 KB
testcase_12 AC 39 ms
24,120 KB
testcase_13 AC 42 ms
25,924 KB
testcase_14 AC 33 ms
25,460 KB
testcase_15 AC 37 ms
23,988 KB
testcase_16 AC 43 ms
25,976 KB
testcase_17 AC 44 ms
26,160 KB
testcase_18 AC 43 ms
26,168 KB
testcase_19 AC 43 ms
28,132 KB
testcase_20 AC 32 ms
25,336 KB
testcase_21 AC 32 ms
25,332 KB
testcase_22 AC 32 ms
25,464 KB
testcase_23 AC 32 ms
25,232 KB
testcase_24 AC 37 ms
25,648 KB
testcase_25 AC 36 ms
25,592 KB
testcase_26 AC 32 ms
27,500 KB
testcase_27 AC 32 ms
25,460 KB
testcase_28 AC 30 ms
25,388 KB
testcase_29 AC 40 ms
27,948 KB
testcase_30 AC 37 ms
24,116 KB
testcase_31 AC 31 ms
25,516 KB
testcase_32 AC 31 ms
27,376 KB
testcase_33 AC 32 ms
27,244 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace TestConsole
{
    class Program
    {
        static void Main(string[] args)
        {
            var width = int.Parse(Console.ReadLine());
            Console.ReadLine();
            var blocks = Console.ReadLine().Split().Select(i => int.Parse(i)).OrderBy(i=>i);

            int count = 0;
            foreach (var item in blocks)
            {
                width -= item;
                if (width < 0)
                {
                    break;
                }
                count++;
            }
            Console.WriteLine(count);
        }
    }
}
0