結果

問題 No.5 数字のブロック
ユーザー _mi_lin__mi_lin_
提出日時 2019-04-05 17:40:14
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 974 ms
コンパイル使用メモリ 108,308 KB
実行使用メモリ 28,188 KB
最終ジャッジ日時 2024-06-11 21:54:54
合計ジャッジ時間 3,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,164 KB
testcase_01 AC 26 ms
22,076 KB
testcase_02 WA -
testcase_03 AC 36 ms
24,752 KB
testcase_04 AC 33 ms
24,284 KB
testcase_05 AC 34 ms
26,596 KB
testcase_06 AC 33 ms
24,416 KB
testcase_07 AC 34 ms
24,756 KB
testcase_08 AC 34 ms
24,356 KB
testcase_09 AC 32 ms
24,620 KB
testcase_10 AC 35 ms
25,056 KB
testcase_11 AC 33 ms
24,544 KB
testcase_12 AC 34 ms
24,896 KB
testcase_13 AC 35 ms
24,800 KB
testcase_14 AC 27 ms
23,852 KB
testcase_15 AC 32 ms
26,272 KB
testcase_16 AC 34 ms
24,684 KB
testcase_17 AC 35 ms
24,668 KB
testcase_18 AC 35 ms
24,680 KB
testcase_19 AC 36 ms
25,004 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 26 ms
26,320 KB
testcase_24 AC 31 ms
24,292 KB
testcase_25 AC 32 ms
26,268 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 33 ms
24,672 KB
testcase_30 AC 31 ms
26,392 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Text;
using System.Threading.Tasks;

namespace No5mathblock
{
    class Program
    {
        static void Main(string[] args)
        {
            //数値の入力
            string[] L = Console.ReadLine().Split(' ');
            string[] N = Console.ReadLine().Split(' ');
            string[] W = Console.ReadLine().Split(' ');

            //箱の幅
            int box = int.Parse(L[0]);
            //ブロックの数
            int block = int.Parse(N[0]);
            //ブロックの幅
            int[] blockwi = new int[W.Length];
            for (int i=0 ; i < W.Length; i++)
            {
                blockwi[i] = int.Parse(W[i]);
            }

            //小さい順に並べ替え
            Array.Sort(blockwi);

            //箱に何個入るか
            int allblockwi = 0;
            int ans = 0;
            for (int j = 0; j < W.Length; j++)
            {
                if (box < allblockwi)
                {
                    break;
                }
                allblockwi += blockwi[j];
                ans += 1;
            }

            //結果表示
            Console.WriteLine(ans - 1);
        }
    }
}
0