結果
問題 |
No.5 数字のブロック
|
ユーザー |
|
提出日時 | 2015-06-28 21:36:42 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 885 bytes |
コンパイル時間 | 1,059 ms |
コンパイル使用メモリ | 112,248 KB |
実行使用メモリ | 20,224 KB |
最終ジャッジ日時 | 2024-11-17 22:57:51 |
合計ジャッジ時間 | 2,687 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace YukiCoderNo6 { class Program { static void Main() { int maxLength = int.Parse(Console.ReadLine()); int blockCount = int.Parse(Console.ReadLine()); int[] blockLength = (Console.ReadLine()).Split(' ').Select(value => int.Parse(value)).ToArray(); int nowBlockLength = 0; int maxBlockCount = 0; Array.Sort(blockLength); foreach (int buffer in blockLength) { nowBlockLength += buffer; if (nowBlockLength <= maxLength) { maxBlockCount++; } else { break; } } Console.WriteLine("{0}", maxBlockCount); } } }