結果

問題 No.617 Nafmo、買い出しに行く
ユーザー NoNo
提出日時 2018-01-26 02:49:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 916 ms
コンパイル使用メモリ 107,008 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-06-08 01:54:35
合計ジャッジ時間 2,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,944 KB
testcase_01 AC 26 ms
18,944 KB
testcase_02 AC 25 ms
18,944 KB
testcase_03 AC 27 ms
18,940 KB
testcase_04 AC 26 ms
18,944 KB
testcase_05 AC 30 ms
19,200 KB
testcase_06 AC 58 ms
26,368 KB
testcase_07 AC 61 ms
26,368 KB
testcase_08 AC 26 ms
18,944 KB
testcase_09 AC 25 ms
18,944 KB
testcase_10 AC 57 ms
26,112 KB
testcase_11 AC 57 ms
26,496 KB
testcase_12 AC 59 ms
26,240 KB
testcase_13 AC 58 ms
26,496 KB
testcase_14 AC 62 ms
26,368 KB
testcase_15 AC 51 ms
26,496 KB
testcase_16 AC 47 ms
26,368 KB
testcase_17 AC 51 ms
26,240 KB
testcase_18 AC 26 ms
18,816 KB
testcase_19 AC 25 ms
18,816 KB
testcase_20 AC 25 ms
18,816 KB
testcase_21 AC 25 ms
18,944 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.Collections.Generic;
using System.Linq;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] ss = Console.ReadLine().Split();
            int n = int.Parse(ss[0]);
            int k = int.Parse(ss[1]);
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
            {
                a[i] = int.Parse(Console.ReadLine());
            }

            var li = new List<int>();
            li.Add(0);
            for (int i = 0; i < n; i++)
            {
                int c = li.Count;
                for (int j = 0; j < c; j++)
                {
                    li.Add(li[j] + a[i]);
                }
            }

            Console.WriteLine(li.Where(x => x <= k).Max());
        }
    }
}
0