結果

問題 No.156 キャンディー・ボックス
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-19 00:51:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 1,513 ms
コンパイル使用メモリ 111,208 KB
実行使用メモリ 27,376 KB
最終ジャッジ日時 2024-07-05 16:20:36
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,324 KB
testcase_01 AC 27 ms
25,436 KB
testcase_02 AC 27 ms
25,428 KB
testcase_03 AC 26 ms
25,176 KB
testcase_04 AC 27 ms
25,260 KB
testcase_05 AC 26 ms
25,304 KB
testcase_06 AC 27 ms
25,176 KB
testcase_07 AC 26 ms
25,304 KB
testcase_08 AC 26 ms
27,244 KB
testcase_09 AC 26 ms
25,180 KB
testcase_10 AC 26 ms
25,520 KB
testcase_11 AC 26 ms
25,196 KB
testcase_12 AC 26 ms
25,264 KB
testcase_13 AC 26 ms
27,376 KB
testcase_14 AC 26 ms
27,120 KB
testcase_15 AC 27 ms
25,432 KB
testcase_16 AC 27 ms
27,248 KB
testcase_17 AC 27 ms
27,124 KB
testcase_18 AC 25 ms
25,432 KB
testcase_19 AC 26 ms
25,136 KB
testcase_20 AC 26 ms
27,368 KB
testcase_21 AC 26 ms
25,432 KB
testcase_22 AC 27 ms
25,392 KB
testcase_23 AC 27 ms
27,344 KB
testcase_24 AC 25 ms
25,300 KB
testcase_25 AC 26 ms
27,088 KB
testcase_26 AC 26 ms
27,364 KB
testcase_27 AC 25 ms
23,088 KB
testcase_28 AC 26 ms
25,392 KB
testcase_29 AC 26 ms
25,320 KB
testcase_30 AC 26 ms
25,304 KB
testcase_31 AC 26 ms
25,260 KB
testcase_32 AC 26 ms
25,388 KB
testcase_33 AC 26 ms
25,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

class No156{
    static void Main(){
        var a=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).ToArray();
        var b=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).OrderBy(x=>x).ToArray();
        var c=0;
        for(int i=0;i<a[0]&&a[1]>0;i++){
            if((a[1]-=b[i])>=0) c++;
        }
        Console.WriteLine(c);
    }
}
0