結果

問題 No.5 数字のブロック
ユーザー yutakahanyutakahan
提出日時 2017-12-06 09:17:45
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 882 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 103,552 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-05-06 16:46:37
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
17,664 KB
testcase_01 AC 20 ms
17,664 KB
testcase_02 RE -
testcase_03 AC 144 ms
19,072 KB
testcase_04 AC 61 ms
18,688 KB
testcase_05 AC 222 ms
18,560 KB
testcase_06 AC 107 ms
18,816 KB
testcase_07 AC 81 ms
18,688 KB
testcase_08 AC 124 ms
19,072 KB
testcase_09 AC 39 ms
18,688 KB
testcase_10 AC 224 ms
18,816 KB
testcase_11 AC 75 ms
18,816 KB
testcase_12 AC 158 ms
18,816 KB
testcase_13 AC 203 ms
18,560 KB
testcase_14 AC 22 ms
17,664 KB
testcase_15 AC 25 ms
18,304 KB
testcase_16 AC 225 ms
18,816 KB
testcase_17 AC 310 ms
18,816 KB
testcase_18 AC 258 ms
19,072 KB
testcase_19 AC 340 ms
19,072 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 20 ms
17,792 KB
testcase_24 AC 25 ms
18,304 KB
testcase_25 AC 25 ms
18,560 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 59 ms
18,432 KB
testcase_30 AC 43 ms
18,432 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
public class Hello{
    static void Ascsort(int[] a){
        for(int i = 0;i < a.Length - 1;i++){
            for(int j = i + 1;j < a.Length;j++){
                if(a[i] > a[j]){
                    int temp;
                    temp = a[i];
                    a[i] = a[j];
                    a[j] = temp;
                }
            }
        }
    }
    public static void Main(){
        int L = int.Parse(Console.ReadLine());
        int N = int.Parse(Console.ReadLine());
        string[] input = Console.ReadLine().Split(' ');
        int[] block = new int[N];
        for(int x = 0;x < N;x++){
            block[x] = int.Parse(input[x]);
        }
        
        Ascsort(block);
        
        int count = 0;
        while(L - block[count] >= 0){
            L -= block[count];
            count++;
        }
        Console.WriteLine(count);
    }
}
0