結果

問題 No.5 数字のブロック
ユーザー yutakahanyutakahan
提出日時 2017-12-06 09:17:45
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 882 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 108,300 KB
実行使用メモリ 26,928 KB
最終ジャッジ日時 2024-11-29 00:52:11
合計ジャッジ時間 5,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,816 KB
testcase_01 AC 22 ms
25,880 KB
testcase_02 RE -
testcase_03 AC 146 ms
24,676 KB
testcase_04 AC 62 ms
26,708 KB
testcase_05 AC 217 ms
24,672 KB
testcase_06 AC 106 ms
24,800 KB
testcase_07 AC 83 ms
24,832 KB
testcase_08 AC 130 ms
24,672 KB
testcase_09 AC 41 ms
26,520 KB
testcase_10 AC 223 ms
24,748 KB
testcase_11 AC 73 ms
24,552 KB
testcase_12 AC 157 ms
26,688 KB
testcase_13 AC 193 ms
24,704 KB
testcase_14 AC 23 ms
26,080 KB
testcase_15 AC 27 ms
26,132 KB
testcase_16 AC 232 ms
22,708 KB
testcase_17 AC 301 ms
26,928 KB
testcase_18 AC 252 ms
26,692 KB
testcase_19 AC 345 ms
26,856 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 22 ms
23,908 KB
testcase_24 AC 27 ms
24,548 KB
testcase_25 AC 28 ms
24,220 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 60 ms
24,668 KB
testcase_30 AC 49 ms
24,212 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