結果

問題 No.5 数字のブロック
ユーザー bluemeganebluemegane
提出日時 2018-10-24 17:20:17
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 107,092 KB
実行使用メモリ 28,312 KB
最終ジャッジ日時 2024-11-19 05:30:44
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,956 KB
testcase_01 AC 26 ms
26,084 KB
testcase_02 AC 24 ms
23,916 KB
testcase_03 AC 31 ms
22,836 KB
testcase_04 AC 32 ms
24,812 KB
testcase_05 AC 34 ms
26,492 KB
testcase_06 AC 33 ms
26,640 KB
testcase_07 AC 31 ms
24,556 KB
testcase_08 AC 33 ms
24,380 KB
testcase_09 AC 30 ms
24,552 KB
testcase_10 AC 33 ms
24,680 KB
testcase_11 AC 32 ms
24,552 KB
testcase_12 AC 34 ms
24,552 KB
testcase_13 AC 33 ms
24,824 KB
testcase_14 AC 26 ms
22,068 KB
testcase_15 AC 29 ms
24,172 KB
testcase_16 AC 33 ms
26,852 KB
testcase_17 AC 34 ms
22,964 KB
testcase_18 AC 34 ms
25,056 KB
testcase_19 AC 34 ms
25,236 KB
testcase_20 WA -
testcase_21 AC 25 ms
26,228 KB
testcase_22 AC 27 ms
24,172 KB
testcase_23 AC 25 ms
22,196 KB
testcase_24 AC 30 ms
24,812 KB
testcase_25 AC 31 ms
24,564 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 32 ms
24,692 KB
testcase_30 AC 32 ms
26,604 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
{
    public static void Main()
    {
        var L = int.Parse(Console.ReadLine().Trim());
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        Array.Sort(a);
        var sum = 0;
        for (int i = 0; i < n; i++)
        {
            sum += a[i];
            if (sum == L) { Console.WriteLine(i + 1); break; }
            if (sum > L) { Console.WriteLine(i); break; }
        }
    }
}
0