結果

問題 No.5 数字のブロック
ユーザー koinko_gamekoinko_game
提出日時 2019-07-10 23:33:35
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 3,646 ms
コンパイル使用メモリ 109,132 KB
実行使用メモリ 29,748 KB
最終ジャッジ日時 2024-11-06 13:43:34
合計ジャッジ時間 5,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,008 KB
testcase_01 AC 30 ms
25,228 KB
testcase_02 WA -
testcase_03 AC 36 ms
28,008 KB
testcase_04 AC 36 ms
25,612 KB
testcase_05 AC 38 ms
25,868 KB
testcase_06 AC 37 ms
29,748 KB
testcase_07 AC 35 ms
25,640 KB
testcase_08 AC 37 ms
25,904 KB
testcase_09 AC 36 ms
25,740 KB
testcase_10 AC 38 ms
25,872 KB
testcase_11 AC 38 ms
27,908 KB
testcase_12 AC 38 ms
25,980 KB
testcase_13 AC 39 ms
27,680 KB
testcase_14 AC 31 ms
25,264 KB
testcase_15 AC 34 ms
25,556 KB
testcase_16 AC 38 ms
26,124 KB
testcase_17 AC 39 ms
28,044 KB
testcase_18 AC 39 ms
25,900 KB
testcase_19 AC 40 ms
26,124 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 31 ms
27,140 KB
testcase_24 AC 35 ms
25,296 KB
testcase_25 AC 35 ms
27,476 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 36 ms
27,908 KB
testcase_30 AC 36 ms
23,608 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;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using static System.Console;
using static System.Math;

class Program
{
    static void Main(string[] args)
    {
        int L = ReadLineParseInt();
        int N = ReadLineParseInt();
        int[] W = ReadLine().Split(" ").Select(int.Parse).ToArray();
        Array.Sort(W);
        int count = 0;
        for(int i = 0; i < W.Length; i++)
        {
            count += W[i];
            if(count > L)
            {
                WriteLine(i);
                return;
            }
        }
    }
    static int ReadLineParseInt() => int.Parse(ReadLine());
}
0