結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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.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