結果

問題 No.5 数字のブロック
ユーザー NetSeedNetSeed
提出日時 2016-05-10 22:51:39
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 1,166 ms
コンパイル使用メモリ 113,168 KB
実行使用メモリ 28,504 KB
最終ジャッジ日時 2024-10-05 13:36:03
合計ジャッジ時間 3,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
25,308 KB
testcase_01 AC 35 ms
25,184 KB
testcase_02 WA -
testcase_03 AC 43 ms
24,244 KB
testcase_04 AC 43 ms
27,896 KB
testcase_05 AC 45 ms
28,376 KB
testcase_06 AC 44 ms
26,212 KB
testcase_07 AC 43 ms
26,016 KB
testcase_08 AC 44 ms
26,456 KB
testcase_09 AC 41 ms
23,608 KB
testcase_10 AC 46 ms
26,716 KB
testcase_11 AC 43 ms
26,204 KB
testcase_12 AC 45 ms
28,268 KB
testcase_13 AC 45 ms
26,332 KB
testcase_14 AC 37 ms
27,572 KB
testcase_15 AC 40 ms
25,788 KB
testcase_16 AC 45 ms
26,332 KB
testcase_17 AC 47 ms
28,504 KB
testcase_18 AC 45 ms
26,596 KB
testcase_19 AC 47 ms
26,592 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 34 ms
27,464 KB
testcase_24 AC 41 ms
27,864 KB
testcase_25 AC 40 ms
25,788 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 43 ms
26,204 KB
testcase_30 AC 42 ms
25,828 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;

namespace TestBench
{

	internal class Program
	{
		public static int Val { get; set; } = 100;

		internal static void Main()
		{
			var l = int.Parse(Console.ReadLine());
			Console.ReadLine();
			var w =
				Console.ReadLine()
					.Split(' ')
					.Select(x => short.Parse(x))
					.OrderBy(x => x)
					.Select((width, index) => new {width, index}).ToArray();

			var accum = 0;
			var idx = 0;
			foreach (var elem in w)
			{
				var tmp = accum + elem.width;
				idx = elem.index;

				if (tmp > l)
				{
					break;
				}

				accum = tmp;
			}


			Console.WriteLine(idx);




		}
	}
}
0