結果
問題 |
No.1046 Fruits Rush
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 WA * 3 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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); } }