結果

問題 No.5 数字のブロック
ユーザー changta_15changta_15
提出日時 2019-09-02 21:07:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 772 bytes
コンパイル時間 1,319 ms
コンパイル使用メモリ 107,864 KB
実行使用メモリ 27,248 KB
最終ジャッジ日時 2024-12-17 16:40:11
合計ジャッジ時間 3,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,140 KB
testcase_01 AC 24 ms
26,180 KB
testcase_02 AC 23 ms
24,108 KB
testcase_03 AC 31 ms
26,676 KB
testcase_04 AC 31 ms
24,880 KB
testcase_05 AC 31 ms
24,672 KB
testcase_06 AC 31 ms
24,864 KB
testcase_07 AC 29 ms
24,624 KB
testcase_08 AC 33 ms
26,716 KB
testcase_09 AC 30 ms
24,476 KB
testcase_10 AC 35 ms
24,932 KB
testcase_11 AC 30 ms
24,544 KB
testcase_12 AC 32 ms
24,552 KB
testcase_13 AC 32 ms
24,880 KB
testcase_14 AC 26 ms
24,032 KB
testcase_15 AC 29 ms
24,240 KB
testcase_16 AC 33 ms
26,856 KB
testcase_17 AC 33 ms
24,676 KB
testcase_18 AC 33 ms
24,780 KB
testcase_19 AC 34 ms
27,248 KB
testcase_20 AC 24 ms
21,940 KB
testcase_21 AC 24 ms
26,316 KB
testcase_22 AC 25 ms
26,208 KB
testcase_23 AC 24 ms
24,140 KB
testcase_24 AC 29 ms
24,424 KB
testcase_25 AC 29 ms
26,456 KB
testcase_26 AC 26 ms
25,932 KB
testcase_27 AC 24 ms
23,856 KB
testcase_28 AC 23 ms
25,944 KB
testcase_29 AC 30 ms
24,668 KB
testcase_30 AC 30 ms
24,620 KB
testcase_31 AC 23 ms
26,012 KB
testcase_32 AC 23 ms
25,884 KB
testcase_33 AC 23 ms
26,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
namespace test9002
{
    class Program
    {
        static void Main()
        {
            int op = 0;
            var w = int.Parse(Console.ReadLine());
            var a = int.Parse(Console.ReadLine());
            var ar = Console.ReadLine().Split(' ');
            int[] ar2 = new int[ar.Length];
            for (int i = 0; i < ar2.Length; i++)
            {
                ar2[i] = int.Parse(ar[i]);
            }
            Array.Sort(ar2);
            int tp = 0;
            for (int i = 0; i < ar2.Length; i++)
            {
                if (tp + ar2[i] > w)
                {
                    break;
                }
                tp += ar2[i];
                op++;
            }
            Console.WriteLine(op);
        }
    }
}
0