結果

問題 No.5 数字のブロック
ユーザー ub_nyaoiixub_nyaoiix
提出日時 2016-12-17 16:44:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 453 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 110,464 KB
実行使用メモリ 26,976 KB
最終ジャッジ日時 2024-11-18 10:48:13
合計ジャッジ時間 2,519 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
22,068 KB
testcase_01 AC 25 ms
26,052 KB
testcase_02 AC 23 ms
24,108 KB
testcase_03 AC 30 ms
24,680 KB
testcase_04 AC 30 ms
24,432 KB
testcase_05 AC 31 ms
26,600 KB
testcase_06 AC 29 ms
24,588 KB
testcase_07 AC 29 ms
24,936 KB
testcase_08 AC 33 ms
22,632 KB
testcase_09 AC 29 ms
24,604 KB
testcase_10 AC 32 ms
26,976 KB
testcase_11 AC 30 ms
24,804 KB
testcase_12 AC 32 ms
26,708 KB
testcase_13 AC 31 ms
24,676 KB
testcase_14 AC 23 ms
21,944 KB
testcase_15 AC 29 ms
24,352 KB
testcase_16 AC 32 ms
26,480 KB
testcase_17 AC 31 ms
24,796 KB
testcase_18 AC 33 ms
22,968 KB
testcase_19 AC 32 ms
25,060 KB
testcase_20 AC 24 ms
24,032 KB
testcase_21 AC 23 ms
24,156 KB
testcase_22 AC 23 ms
23,680 KB
testcase_23 AC 24 ms
24,032 KB
testcase_24 AC 28 ms
24,668 KB
testcase_25 AC 28 ms
24,296 KB
testcase_26 AC 23 ms
24,136 KB
testcase_27 AC 23 ms
26,304 KB
testcase_28 AC 22 ms
23,968 KB
testcase_29 AC 30 ms
24,424 KB
testcase_30 AC 29 ms
24,672 KB
testcase_31 AC 23 ms
23,900 KB
testcase_32 AC 22 ms
26,008 KB
testcase_33 AC 22 ms
25,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Q0005
{
	public static void Main()
	{
		int l = int.Parse(Console.ReadLine());
		int n = int.Parse(Console.ReadLine());

		string[] input = Console.ReadLine().Split(' ');
		int[] w = new int[n];
		for(int i=0; i<n; i++)
		{
			w[i] = int.Parse(input[i]);
		}

		Array.Sort(w);
		int sum = 0;
		int count = 0;
		for(; count<n; count++)
		{
			sum += w[count];
			if(sum > l)
			{
				break;
			}
		}

		Console.WriteLine(count);
	}
}
0