結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2019-04-25 18:57:07 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 40 ms / 5,000 ms |
コード長 | 679 bytes |
コンパイル時間 | 2,681 ms |
コンパイル使用メモリ | 112,008 KB |
実行使用メモリ | 20,480 KB |
最終ジャッジ日時 | 2024-11-21 06:26:40 |
合計ジャッジ時間 | 5,177 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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.Linq; using System.Collections.Generic; namespace test20190423 { class Program { static void Main(string[] args) { var width = int.Parse(Console.ReadLine()); _ = Console.ReadLine(); var ss = Console.ReadLine().Split(new String[] { " " }, StringSplitOptions.RemoveEmptyEntries).Select(x => int.Parse(x)).ToList(); ss.Sort(); int i = 0; for (i = 0; i < ss.Count; i++) { if (width - ss[i] < 0) break; width -= ss[i]; } Console.WriteLine(i); Console.ReadLine(); } } }