結果

問題 No.1046 Fruits Rush
ユーザー bluemeganebluemegane
提出日時 2020-05-09 19:00:49
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 110,872 KB
実行使用メモリ 27,188 KB
最終ジャッジ日時 2024-07-06 03:42:37
合計ジャッジ時間 2,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,036 KB
testcase_01 AC 24 ms
27,112 KB
testcase_02 AC 24 ms
27,108 KB
testcase_03 AC 24 ms
24,760 KB
testcase_04 AC 28 ms
25,200 KB
testcase_05 AC 24 ms
24,892 KB
testcase_06 AC 23 ms
24,688 KB
testcase_07 AC 23 ms
26,940 KB
testcase_08 AC 24 ms
26,928 KB
testcase_09 AC 28 ms
25,260 KB
testcase_10 AC 25 ms
24,880 KB
testcase_11 AC 25 ms
24,692 KB
testcase_12 AC 24 ms
25,076 KB
testcase_13 AC 24 ms
24,820 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        var a = new List<int>();
         line = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < n; i++)
        {
            var t = int.Parse(line[i]);
            if (t > 0) a.Add(t);
        }
        var acc = a.Count();
        int ans;
        if (k >= acc) ans = a.Sum();
        else ans = a.OrderByDescending(x => x).Take(k).Sum();
        Console.WriteLine(ans);
    }
}
0