結果

問題 No.5 数字のブロック
ユーザー PE11
提出日時 2018-02-02 14:13:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 582 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 114,052 KB
実行使用メモリ 28,124 KB
最終ジャッジ日時 2024-11-18 12:04:11
合計ジャッジ時間 2,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

public class Program
{
	static void Main()
	{
		var Width = Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x)).First();
		Console.ReadLine();

		var BlockWidth = Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x)).OrderBy(x => x).ToList<int>();

		for (int i = 0; i < BlockWidth.Count; i++)
		{
			Width -= BlockWidth[i];

			if(Width == 0)
			{
				Console.WriteLine(i + 1);
				break;
			}

			if(Width < 0)
			{
				Console.WriteLine(i);
				break;
			}
		}

		if (Width > 0)
			Console.WriteLine(BlockWidth.Count);
	}
}



0