結果
問題 | No.5 数字のブロック |
ユーザー | Salvia0911 |
提出日時 | 2023-11-05 20:33:20 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 71 ms / 5,000 ms |
コード長 | 2,896 bytes |
コンパイル時間 | 7,298 ms |
コンパイル使用メモリ | 166,016 KB |
実行使用メモリ | 183,040 KB |
最終ジャッジ日時 | 2024-09-25 22:41:14 |
合計ジャッジ時間 | 9,939 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
29,056 KB |
testcase_01 | AC | 48 ms
29,056 KB |
testcase_02 | AC | 47 ms
28,928 KB |
testcase_03 | AC | 53 ms
30,336 KB |
testcase_04 | AC | 52 ms
30,332 KB |
testcase_05 | AC | 54 ms
30,592 KB |
testcase_06 | AC | 51 ms
29,680 KB |
testcase_07 | AC | 52 ms
29,952 KB |
testcase_08 | AC | 52 ms
29,952 KB |
testcase_09 | AC | 52 ms
29,568 KB |
testcase_10 | AC | 57 ms
30,592 KB |
testcase_11 | AC | 52 ms
29,552 KB |
testcase_12 | AC | 54 ms
30,336 KB |
testcase_13 | AC | 56 ms
30,208 KB |
testcase_14 | AC | 49 ms
29,056 KB |
testcase_15 | AC | 49 ms
29,184 KB |
testcase_16 | AC | 55 ms
30,576 KB |
testcase_17 | AC | 57 ms
30,592 KB |
testcase_18 | AC | 57 ms
30,464 KB |
testcase_19 | AC | 71 ms
31,744 KB |
testcase_20 | AC | 49 ms
29,056 KB |
testcase_21 | AC | 48 ms
29,312 KB |
testcase_22 | AC | 50 ms
29,056 KB |
testcase_23 | AC | 50 ms
28,928 KB |
testcase_24 | AC | 50 ms
29,184 KB |
testcase_25 | AC | 50 ms
29,312 KB |
testcase_26 | AC | 50 ms
29,040 KB |
testcase_27 | AC | 51 ms
29,184 KB |
testcase_28 | AC | 48 ms
29,056 KB |
testcase_29 | AC | 52 ms
29,828 KB |
testcase_30 | AC | 50 ms
29,312 KB |
testcase_31 | AC | 47 ms
28,800 KB |
testcase_32 | AC | 47 ms
28,800 KB |
testcase_33 | AC | 48 ms
183,040 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (92 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
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 Mid = -1; long Last = array.Length - 1; while (First <= Last) { Mid = First + (Last - First) / 2; if (array[Mid] <= target) First = Mid + 1; else Last = Mid - 1; } return Last; } } 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); long target = BinarySearch.ReturnLowerBoundOfTarget(sum,input.L); Console.WriteLine(target); } }