結果
問題 |
No.1046 Fruits Rush
|
ユーザー |
![]() |
提出日時 | 2020-05-09 19:09:01 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 886 bytes |
コンパイル時間 | 1,352 ms |
コンパイル使用メモリ | 112,400 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-07-06 03:54:48 |
合計ジャッジ時間 | 2,376 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
コンパイルメッセージ
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>(); var b = 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); else b.Add(t); } var acc = a.Count(); if (acc == 0) { var w = b.OrderByDescending(x => x).Take(1).Sum(); Console.WriteLine(w); goto exit; } int ans; if (k >= acc) ans = a.Sum(); else ans = a.OrderByDescending(x => x).Take(k).Sum(); Console.WriteLine(ans); exit:; } }