結果

問題 No.5 数字のブロック
ユーザー PE11
提出日時 2018-02-02 14:09:53
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 112,564 KB
実行使用メモリ 29,672 KB
最終ジャッジ日時 2024-12-31 00:30:49
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
			}
		}
	}
}



0