結果
問題 | No.5 数字のブロック |
ユーザー | nokonoko |
提出日時 | 2016-10-19 20:52:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 37 ms / 5,000 ms |
コード長 | 2,748 bytes |
コンパイル時間 | 812 ms |
コンパイル使用メモリ | 115,172 KB |
実行使用メモリ | 28,148 KB |
最終ジャッジ日時 | 2024-11-18 10:15:18 |
合計ジャッジ時間 | 2,762 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
27,444 KB |
testcase_01 | AC | 28 ms
25,544 KB |
testcase_02 | AC | 26 ms
25,148 KB |
testcase_03 | AC | 35 ms
25,776 KB |
testcase_04 | AC | 33 ms
25,948 KB |
testcase_05 | AC | 34 ms
28,132 KB |
testcase_06 | AC | 33 ms
26,044 KB |
testcase_07 | AC | 33 ms
28,148 KB |
testcase_08 | AC | 33 ms
25,796 KB |
testcase_09 | AC | 34 ms
27,820 KB |
testcase_10 | AC | 37 ms
26,044 KB |
testcase_11 | AC | 33 ms
26,032 KB |
testcase_12 | AC | 35 ms
26,040 KB |
testcase_13 | AC | 34 ms
26,172 KB |
testcase_14 | AC | 29 ms
27,332 KB |
testcase_15 | AC | 32 ms
25,788 KB |
testcase_16 | AC | 36 ms
26,172 KB |
testcase_17 | AC | 35 ms
26,432 KB |
testcase_18 | AC | 36 ms
28,120 KB |
testcase_19 | AC | 36 ms
28,104 KB |
testcase_20 | AC | 29 ms
25,404 KB |
testcase_21 | AC | 27 ms
25,400 KB |
testcase_22 | AC | 29 ms
25,520 KB |
testcase_23 | AC | 28 ms
27,592 KB |
testcase_24 | AC | 32 ms
27,904 KB |
testcase_25 | AC | 31 ms
25,920 KB |
testcase_26 | AC | 27 ms
25,540 KB |
testcase_27 | AC | 26 ms
25,516 KB |
testcase_28 | AC | 25 ms
25,268 KB |
testcase_29 | AC | 33 ms
27,920 KB |
testcase_30 | AC | 32 ms
26,140 KB |
testcase_31 | AC | 26 ms
25,260 KB |
testcase_32 | AC | 27 ms
25,004 KB |
testcase_33 | AC | 27 ms
27,284 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using LIB; using System; using System.Linq; using System.Text; using System.Collections.Generic; class Program { public static IO IO = new IO(); static void Main(string[] args) { long l = IO.LONG(); long n = IO.LONG(); long[] w = IO.LONG(' '); long a = n; long t = 0; Array.Sort(w); for (int i = 0; i < n; i++) { t += w[i]; if (t > l) { a = i; break; } } IO.WRITE(a); IO.FLUSH(); } } namespace LIB { public class IO { private const int WMAX = 1000; private StringBuilder S = new StringBuilder(); private T R<T>(Func<string, T> f) { return f(Console.ReadLine()); } private T[] R<T>(Func<string, T> f, char c) { return STRING().Split(c).Select(f).ToArray(); } private T[] R<T>(Func<string, T> f, int l) { T[] r = new T[l]; for (int i = 0; i < l; i++) { r[i] = R(f); } return r; } private T[][] R<T>(Func<string, T> f, int l, char c) { T[][] r = new T[l][]; for (int i = 0; i < l; i++) { r[i] = R<T>(f, c); } return r; } private void W<T>(Func<T, string> f, T v, bool lf = true) { S.Append(f(v)); if (lf == true) { S.Append('\n'); } if (S.Length >= WMAX) { FLUSH(); } } public string STRING() { return R(s => s); } public string[] STRING(char c) { return R(s => s, c); } public string[] STRING(int l) { return R(s => s, l); } public string[][] STRING(int l, char c) { return R(s => s, l, c); } public int INT() { return R(int.Parse); } public int[] INT(char c) { return R(int.Parse, c); } public int[] INT(int l) { return R(int.Parse, l); } public int[][] INT(int l, char c) { return R(int.Parse, l, c); } public long LONG() { return R(long.Parse); } public long[] LONG(char c) { return R(long.Parse, c); } public long[] LONG(int l) { return R(long.Parse, l); } public long[][] LONG(int l, char c) { return R(long.Parse, l, c); } public double DOUBLE() { return R(double.Parse); } public double[] DOUBLE(char c) { return R(double.Parse, c); } public double[] DOUBLE(int l) { return R(double.Parse, l); } public double[][] DOUBLE(int l, char c) { return R(double.Parse, l, c); } public void WRITE(string s, bool lf = true) { W(v => v, s, lf); } public void WRITE(int s, bool lf = true) { W(v => v.ToString(), s, lf); } public void WRITE(long s, bool lf = true) { W(v => v.ToString(), s, lf); } public void WRITE(double s, bool lf = true) { W(v => v.ToString(), s, lf); } public void FLUSH() { Console.Write(S); S.Length = 0; } } }