結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-01 15:09:51 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 23 ms / 5,000 ms |
| コード長 | 456 bytes |
| 記録 | |
| コンパイル時間 | 769 ms |
| コンパイル使用メモリ | 111,032 KB |
| 実行使用メモリ | 19,968 KB |
| 最終ジャッジ日時 | 2026-05-12 23:42:16 |
| 合計ジャッジ時間 | 2,469 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
public class Program {
public static void Main(string[] args) {
int l = int.Parse(Console.ReadLine());
Console.ReadLine();
string[] s = Console.ReadLine().Split(' ');
int[] w = new int[s.Length];
for (int i = 0; i < w.Length; i++) {
w[i] = int.Parse(s[i]);
}
Array.Sort(w);
int count = 0;
for (int i = 0; i < w.Length; i++) {
if (l - w[i] >= 0) {
l -= w[i];
count++;
}
}
Console.WriteLine(count);
}
}