結果
問題 |
No.5 数字のブロック
|
ユーザー |
|
提出日時 | 2023-09-05 14:53:20 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 40 ms / 5,000 ms |
コード長 | 703 bytes |
コンパイル時間 | 4,513 ms |
コンパイル使用メモリ | 105,856 KB |
実行使用メモリ | 20,352 KB |
最終ジャッジ日時 | 2024-06-23 10:30:39 |
合計ジャッジ時間 | 3,220 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 PracticeAtCoder { class Program { static void Main(string[] args) { //ブロック string sA = Console.ReadLine(); string sB = Console.ReadLine(); string sC = Console.ReadLine(); string[] sD = sC.Split(' '); int[] after = sD.Select(s => int.Parse(s)).ToArray(); Array.Sort(after); int intSA = int.Parse(sA); int intSB = int.Parse(sB); int i = 0; int sumA = 0; //While文に書き直して判断を行う while(i < intSB && sumA + after[i] <= intSA){ sumA = sumA + after[i]; i++; } Console.WriteLine(i); } } }