結果

問題 No.5 数字のブロック
ユーザー kimnykimny
提出日時 2017-11-16 18:52:22
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 834 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 110,480 KB
実行使用メモリ 26,800 KB
最終ジャッジ日時 2024-11-25 06:29:34
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,756 KB
testcase_01 AC 23 ms
23,892 KB
testcase_02 AC 22 ms
23,648 KB
testcase_03 AC 31 ms
24,500 KB
testcase_04 AC 30 ms
26,476 KB
testcase_05 AC 31 ms
24,548 KB
testcase_06 AC 30 ms
26,524 KB
testcase_07 AC 28 ms
24,752 KB
testcase_08 AC 29 ms
26,800 KB
testcase_09 AC 28 ms
24,544 KB
testcase_10 AC 31 ms
24,872 KB
testcase_11 AC 30 ms
24,676 KB
testcase_12 AC 33 ms
24,552 KB
testcase_13 AC 31 ms
22,452 KB
testcase_14 AC 24 ms
24,160 KB
testcase_15 AC 29 ms
26,408 KB
testcase_16 AC 31 ms
24,688 KB
testcase_17 AC 30 ms
25,004 KB
testcase_18 AC 32 ms
25,008 KB
testcase_19 AC 32 ms
24,820 KB
testcase_20 RE -
testcase_21 AC 23 ms
24,368 KB
testcase_22 AC 22 ms
23,984 KB
testcase_23 AC 23 ms
25,932 KB
testcase_24 AC 28 ms
24,232 KB
testcase_25 AC 29 ms
24,496 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 31 ms
26,588 KB
testcase_30 AC 29 ms
24,496 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yukicoder_5 {
    class Program {
        static void Main(string[] args) {
            int p = int.Parse(Console.ReadLine());
            int q = int.Parse(Console.ReadLine());
            string[] r = Console.ReadLine().Split(' ');
            int[] a = new int[q];
            for(int i = 0; i < q; i++) {
                a[i] = int.Parse(r[i]);
            }
            Array.Sort(a);
            int sum = 0;
            int count = 0;
            for(int i = 0; sum < p; i++) {
                sum += a[i];
                count++;
            }
            if (sum > p) {
                count--;
            }
            Console.WriteLine(count);
            Console.ReadLine();
        }
    }
}
0