結果

問題 No.156 キャンディー・ボックス
ユーザー funakoshifunakoshi
提出日時 2019-06-25 17:21:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 26,080 KB
最終ジャッジ日時 2024-07-05 16:27:36
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,912 KB
testcase_01 AC 27 ms
23,904 KB
testcase_02 AC 26 ms
24,152 KB
testcase_03 AC 27 ms
25,940 KB
testcase_04 AC 26 ms
23,860 KB
testcase_05 AC 27 ms
24,020 KB
testcase_06 AC 28 ms
25,936 KB
testcase_07 AC 27 ms
23,856 KB
testcase_08 AC 27 ms
24,032 KB
testcase_09 AC 27 ms
23,904 KB
testcase_10 AC 27 ms
21,936 KB
testcase_11 AC 27 ms
24,012 KB
testcase_12 AC 28 ms
23,728 KB
testcase_13 AC 27 ms
24,032 KB
testcase_14 AC 27 ms
21,812 KB
testcase_15 AC 28 ms
23,908 KB
testcase_16 AC 27 ms
26,076 KB
testcase_17 AC 28 ms
23,904 KB
testcase_18 AC 26 ms
24,024 KB
testcase_19 AC 26 ms
23,780 KB
testcase_20 AC 26 ms
25,956 KB
testcase_21 AC 27 ms
24,032 KB
testcase_22 AC 27 ms
25,928 KB
testcase_23 AC 26 ms
24,028 KB
testcase_24 AC 25 ms
23,908 KB
testcase_25 AC 25 ms
25,888 KB
testcase_26 AC 26 ms
26,080 KB
testcase_27 AC 27 ms
21,944 KB
testcase_28 AC 27 ms
23,908 KB
testcase_29 AC 26 ms
23,900 KB
testcase_30 AC 30 ms
24,028 KB
testcase_31 AC 27 ms
23,856 KB
testcase_32 AC 57 ms
25,820 KB
testcase_33 AC 56 ms
23,916 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;
using System.Text;
using System.Threading.Tasks;

namespace yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            string input2 = Console.ReadLine();
            string[] NM = input.Split(' ');
            string[] C = input2.Split(' ');
            int box = int.Parse(NM[0]);
            int takecandy = int.Parse(NM[1]);
            int[] candyinbox = new int[C.Length];
            int zeroboxcnt = 0;
            int candycnt = 0;
            for(int i=0;i<C.Length;i++)
            {
                candyinbox[i] = int.Parse(C[i]);
            }
            Array.Sort(candyinbox);
            for(int i=0;i<C.Length;i++)
            {
                if(candycnt==takecandy)
                {
                    break;
                }
                while(candycnt!=takecandy)
                {
                    candyinbox[i]--;
                    candycnt++;
                    if(candyinbox[i]==0)
                    {
                        zeroboxcnt++;
                        break;
                    }
                }
            }
            Console.WriteLine(zeroboxcnt);
        }

    }
}
0