結果

問題 No.5 数字のブロック
ユーザー Salvia0911Salvia0911
提出日時 2023-11-05 20:04:59
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,056 bytes
コンパイル時間 7,796 ms
コンパイル使用メモリ 158,312 KB
実行使用メモリ 176,788 KB
最終ジャッジ日時 2023-11-05 20:05:26
合計ジャッジ時間 11,999 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;


public class InputStrorage
{
    public long L;
    public long N;
    public long[] Array;
}

public static class InputHandler
{
    public static void ReadInput(InputStrorage input)
    {
        string[] str = Console.ReadLine().Split();
        input.L = int.Parse(str[0]);

        str = Console.ReadLine().Split();
        input.N = int.Parse(str[0]);

        str = Console.ReadLine().Split();
        input.Array = new long[input.N];
        for(int i  =0; i < input.N; i++)
        {
            input.Array[i] = long.Parse(str[i]);
        }
    }
}

namespace GeneralLibs
{
    public class Compare
    {
        public static long ReturnMax(long a, long b)
        {
            if (a > b) return a;
            else return b;
        }

        public static long ReturnMax(long[] a)
        {
            long max = long.MinValue;
            for (int i = 0; i < a.Length; i++)
            {
                if (a[i] > max) max = a[i];
            }
            return max;
        }
    }

    public class ShowValues
    {
        public static void ShowArray1D(long[] a, string str = "default")
        {
            Console.WriteLine(str);
            for (int i = 0; i < a.Length; i++)
            {
                Console.Write("{0} ", a[i]);
            }
            Console.WriteLine();
            Console.WriteLine(str);
        }

        public static void ShowValue(long a, string str = "default")
        {
            Console.WriteLine("{0} : {1}", a, str);
        }
    }
}

public class SpecificLibs
{

}

public class BinarySearch
{
    public static long ReturnLowerBoundOfTarget(long[] array, long target)
    {
        long First = 0;
        long Last = array.Length - 1;

        while (First <= Last)
        {
            long Mid = First + (Last - First) / 2;
            if (array[Mid] < target) First = Mid + 1;
            else Last = Mid - 1;
        }
        return First;
    }
}

public class PrefixSum
{
    public static long[] ReturnPrefixSum1D(long[] input)
    {
        long n = input.Length;
        long[] output = new long[n + 1];
        long sum = 0;
        output[0] = 0;

        for (long i = 1; i < n + 1; i++)
        {
            sum += input[i - 1];
            output[i] = sum;
        }
        return output;
    }

    public static long ReturnSegmentValue(long[] input, long start, long end)
    {
        return input[end] - input[start - 1];
    }
}

static class No5
{
    static void Main()
    {
        InputStrorage input = new InputStrorage();
        InputHandler.ReadInput(input);

        Array.Sort(input.Array);

        long[] sum = new long[input.N + 1];
        sum = PrefixSum.ReturnPrefixSum1D(input.Array);

        GeneralLibs.ShowValues.ShowArray1D(sum);

        long target = BinarySearch.ReturnLowerBoundOfTarget(sum,input.L);

        GeneralLibs.ShowValues.ShowValue(target);

        if (target >= input.N) target = input.N;
        else target = target - 1;

        Console.WriteLine(target);
    }
}
0