結果

問題 No.5 数字のブロック
ユーザー TDTD
提出日時 2022-05-24 14:30:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 378 ms / 5,000 ms
コード長 1,121 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 107,484 KB
実行使用メモリ 26,976 KB
最終ジャッジ日時 2024-09-20 14:23:24
合計ジャッジ時間 5,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,172 KB
testcase_01 AC 25 ms
24,052 KB
testcase_02 AC 25 ms
23,984 KB
testcase_03 AC 166 ms
24,816 KB
testcase_04 AC 68 ms
26,592 KB
testcase_05 AC 247 ms
26,852 KB
testcase_06 AC 121 ms
26,884 KB
testcase_07 AC 93 ms
24,624 KB
testcase_08 AC 140 ms
24,428 KB
testcase_09 AC 44 ms
24,500 KB
testcase_10 AC 251 ms
24,684 KB
testcase_11 AC 83 ms
22,576 KB
testcase_12 AC 175 ms
25,004 KB
testcase_13 AC 221 ms
26,976 KB
testcase_14 AC 25 ms
23,700 KB
testcase_15 AC 30 ms
24,180 KB
testcase_16 AC 254 ms
26,720 KB
testcase_17 AC 345 ms
24,880 KB
testcase_18 AC 283 ms
24,780 KB
testcase_19 AC 378 ms
25,080 KB
testcase_20 AC 27 ms
26,004 KB
testcase_21 AC 25 ms
23,984 KB
testcase_22 AC 24 ms
23,916 KB
testcase_23 AC 25 ms
24,168 KB
testcase_24 AC 30 ms
24,308 KB
testcase_25 AC 31 ms
26,264 KB
testcase_26 AC 27 ms
26,264 KB
testcase_27 AC 27 ms
24,236 KB
testcase_28 AC 27 ms
25,860 KB
testcase_29 AC 66 ms
24,304 KB
testcase_30 AC 49 ms
24,348 KB
testcase_31 AC 25 ms
23,956 KB
testcase_32 AC 25 ms
24,108 KB
testcase_33 AC 25 ms
23,924 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 yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int a,b,e;
            int num = 0;
            int sum = 0;
            a = int.Parse(Console.ReadLine());
            b = int.Parse(Console.ReadLine());
            string[] c = Console.ReadLine().Split(' ');
            int[] d = new int[c.Length];

            for(int i = 0; i < c.Length; i++)
            {
                d[i] = int.Parse(c[i]);
            }
            for (int x = 0; x <= d.Length;x++)
            {
                for (int y = x; y < d.Length; y++)
                {
                    if (d[y]<d[x])
                    {
                        e = d[x];   
                        d[x] = d[y];
                        d[y] = e;
                    }
                }
            }
            for(int s = 0; s < d.Length; s++)
            {
                sum += d[s];
                if (sum > a)
                {
                    break;
                }
                num++;
            }
            Console.WriteLine(num.ToString());
        }
    }
}
0