結果

問題 No.5 数字のブロック
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 21:27:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 1,556 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 117,460 KB
実行使用メモリ 27,884 KB
最終ジャッジ日時 2024-10-10 21:27:45
合計ジャッジ時間 2,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,212 KB
testcase_01 AC 31 ms
27,216 KB
testcase_02 AC 28 ms
27,096 KB
testcase_03 AC 38 ms
25,900 KB
testcase_04 AC 37 ms
27,708 KB
testcase_05 AC 37 ms
27,860 KB
testcase_06 AC 36 ms
27,884 KB
testcase_07 AC 35 ms
25,708 KB
testcase_08 AC 35 ms
25,824 KB
testcase_09 AC 34 ms
25,904 KB
testcase_10 AC 37 ms
26,072 KB
testcase_11 AC 35 ms
25,820 KB
testcase_12 AC 36 ms
25,820 KB
testcase_13 AC 37 ms
25,820 KB
testcase_14 AC 29 ms
25,396 KB
testcase_15 AC 34 ms
25,428 KB
testcase_16 AC 37 ms
26,060 KB
testcase_17 AC 37 ms
25,788 KB
testcase_18 AC 37 ms
26,164 KB
testcase_19 AC 39 ms
25,944 KB
testcase_20 AC 29 ms
27,340 KB
testcase_21 AC 30 ms
25,260 KB
testcase_22 AC 29 ms
25,308 KB
testcase_23 AC 31 ms
25,436 KB
testcase_24 AC 35 ms
25,692 KB
testcase_25 AC 36 ms
23,476 KB
testcase_26 AC 30 ms
25,436 KB
testcase_27 AC 30 ms
25,440 KB
testcase_28 AC 28 ms
23,096 KB
testcase_29 AC 35 ms
25,692 KB
testcase_30 AC 35 ms
25,860 KB
testcase_31 AC 28 ms
25,180 KB
testcase_32 AC 28 ms
27,088 KB
testcase_33 AC 28 ms
25,308 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.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("16");
            WillReturn.Add("3");
            WillReturn.Add("10 5 7");
            //2
            //幅16の箱には全部は入れられないが最大2個までは入れられる。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("100");
            WillReturn.Add("10");
            WillReturn.Add("14 85 77 26 50 45 66 79 10 3");
            //5
            //14,26,45,10,3 の組み合わせで最大5個になる
            //(どう組み合わせても6個以上は入らない)
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();

        int L = int.Parse(InputList[0]);
        int[] WidthArr = InputList[2].Split(' ').Select(X => int.Parse(X)).ToArray();

        Array.Sort(WidthArr);
        int AnswerCnt = 0;
        int WidthSum = 0;
        for (int I = 0; I <= WidthArr.GetUpperBound(0); I++) {
            if (WidthSum + WidthArr[I] <= L) {
                WidthSum += WidthArr[I];
                AnswerCnt++;
            }
            else break;
        }
        Console.WriteLine(AnswerCnt);
    }
}
0