結果

問題 No.5 数字のブロック
ユーザー cccccc
提出日時 2022-07-15 19:33:20
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 840 bytes
コンパイル時間 11,065 ms
コンパイル使用メモリ 166,368 KB
実行使用メモリ 183,648 KB
最終ジャッジ日時 2024-06-27 14:34:17
合計ジャッジ時間 14,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,080 KB
testcase_01 AC 56 ms
30,080 KB
testcase_02 AC 56 ms
29,952 KB
testcase_03 AC 58 ms
30,848 KB
testcase_04 AC 57 ms
30,464 KB
testcase_05 AC 59 ms
30,976 KB
testcase_06 AC 58 ms
30,452 KB
testcase_07 AC 57 ms
30,464 KB
testcase_08 AC 60 ms
30,720 KB
testcase_09 AC 59 ms
30,336 KB
testcase_10 AC 59 ms
30,976 KB
testcase_11 AC 57 ms
30,592 KB
testcase_12 AC 59 ms
30,848 KB
testcase_13 AC 59 ms
30,848 KB
testcase_14 AC 56 ms
30,080 KB
testcase_15 AC 57 ms
30,208 KB
testcase_16 AC 59 ms
30,512 KB
testcase_17 AC 59 ms
31,104 KB
testcase_18 AC 59 ms
31,104 KB
testcase_19 AC 59 ms
31,232 KB
testcase_20 AC 56 ms
29,920 KB
testcase_21 AC 56 ms
30,080 KB
testcase_22 AC 56 ms
29,952 KB
testcase_23 AC 56 ms
29,920 KB
testcase_24 AC 55 ms
30,336 KB
testcase_25 AC 57 ms
29,952 KB
testcase_26 AC 56 ms
30,208 KB
testcase_27 AC 56 ms
29,792 KB
testcase_28 AC 56 ms
29,952 KB
testcase_29 AC 58 ms
30,464 KB
testcase_30 AC 57 ms
30,208 KB
testcase_31 AC 56 ms
29,952 KB
testcase_32 AC 55 ms
29,820 KB
testcase_33 AC 57 ms
183,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (115 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Linq;
class Program
{
    static void Main()
    {
        /// 16 : 規定箱の幅
        /// 3  : 挿入箱の数
        /// 10 5 7 : 挿入箱の幅

        // 標準入力
        var spfBox = int.Parse(Console.ReadLine());
        var boxCnt = int.Parse(Console.ReadLine());
        var aryBox = Console.ReadLine().Split().Select(int.Parse).ToArray();

        // 配列を降順でソート
        Array.Sort(aryBox);

        // 空変数定義
        var ansBox = 0;
        var ansCnt = 0;

        // 変数に最小値から代入し規定値を超えていないかチェック
        for (var i = 0; i < boxCnt; i++)
        {
            if ((ansBox += aryBox[i]) > spfBox)
                break;
            else
                ansCnt++;
        }
        Console.WriteLine(ansCnt);

    }
}
0