結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2015-07-08 21:47:44 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 1,391 bytes |
コンパイル時間 | 1,092 ms |
コンパイル使用メモリ | 114,904 KB |
実行使用メモリ | 28,096 KB |
最終ジャッジ日時 | 2024-11-17 22:59:41 |
合計ジャッジ時間 | 3,348 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; class Program { //Constで定義すると警告が出るので、変数として定義 static string InputPattern = "Input3"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("16"); WillReturn.Add("3"); WillReturn.Add("10 5 7"); } else if (InputPattern == "Input2") { WillReturn.Add("100"); WillReturn.Add("10"); WillReturn.Add("14 85 77 26 50 45 66 79 10 3"); } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); int L = int.Parse(InputList[0]); int[] WidthArr = InputList[2].Split(' ').Select(X => int.Parse(X)).ToArray(); //貪欲法を使う Array.Sort(WidthArr); int AnswerCnt = 0; int WidthSum = 0; for (int I = 0; I <= WidthArr.GetUpperBound(0); I++) { if (WidthSum + WidthArr[I] <= L) { WidthSum += WidthArr[I]; AnswerCnt++; } else break; } Console.WriteLine(AnswerCnt); } }