結果

問題 No.2424 Josouzai
ユーザー bluemeganebluemegane
提出日時 2023-08-18 22:17:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 38,400 KB
最終ジャッジ日時 2024-11-28 07:52:02
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,048 KB
testcase_01 AC 25 ms
18,048 KB
testcase_02 AC 23 ms
17,920 KB
testcase_03 AC 21 ms
17,920 KB
testcase_04 AC 58 ms
23,296 KB
testcase_05 AC 141 ms
38,400 KB
testcase_06 AC 140 ms
37,504 KB
testcase_07 AC 145 ms
37,376 KB
testcase_08 AC 144 ms
38,272 KB
testcase_09 AC 23 ms
17,920 KB
testcase_10 AC 50 ms
23,504 KB
testcase_11 AC 109 ms
35,840 KB
testcase_12 AC 89 ms
33,408 KB
testcase_13 AC 59 ms
23,424 KB
testcase_14 AC 90 ms
32,896 KB
testcase_15 AC 33 ms
19,968 KB
testcase_16 AC 124 ms
36,864 KB
testcase_17 AC 51 ms
22,272 KB
testcase_18 AC 55 ms
23,040 KB
testcase_19 AC 74 ms
27,264 KB
testcase_20 AC 126 ms
36,864 KB
testcase_21 AC 105 ms
34,432 KB
testcase_22 AC 58 ms
23,552 KB
testcase_23 AC 67 ms
25,344 KB
testcase_24 AC 43 ms
20,608 KB
testcase_25 AC 134 ms
37,504 KB
testcase_26 AC 105 ms
34,688 KB
testcase_27 AC 136 ms
38,144 KB
testcase_28 AC 124 ms
36,352 KB
testcase_29 AC 114 ms
35,200 KB
testcase_30 AC 46 ms
21,316 KB
testcase_31 AC 78 ms
26,624 KB
testcase_32 AC 138 ms
37,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = long.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        getAns(n, k, a);
    }
    static void getAns(int n, long k, long[] a)
    {
        Array.Sort(a);
        var s = 0L;
        for (int i = 0; i < n; i++)
        {
            if (s + a[i] > k) { Console.WriteLine("{0} {1}", i, k - s); return; }
            s += a[i];
        }
        Console.WriteLine("{0} {1}", n, k - s);
    }
}
0