結果

問題 No.1046 Fruits Rush
ユーザー ika__siika__si
提出日時 2020-05-09 07:54:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 73,804 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-07-05 02:26:53
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,340 KB
testcase_01 AC 124 ms
41,380 KB
testcase_02 AC 119 ms
41,272 KB
testcase_03 AC 127 ms
41,212 KB
testcase_04 AC 134 ms
41,480 KB
testcase_05 AC 134 ms
41,484 KB
testcase_06 AC 128 ms
41,308 KB
testcase_07 AC 131 ms
41,520 KB
testcase_08 AC 134 ms
41,752 KB
testcase_09 AC 130 ms
41,652 KB
testcase_10 AC 124 ms
41,524 KB
testcase_11 AC 126 ms
41,528 KB
testcase_12 AC 135 ms
41,552 KB
testcase_13 AC 136 ms
41,516 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int k = sc.nextInt();

    int[] a = new int[n];

    for (int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
    }

    Arrays.sort(a);

    int sum = 0;

    for (int i = n-1; i > n-k-1; i--) {
      if (sum > sum + a[i]) {
        break;
      }
      sum += a[i];
    }

    System.out.println(sum);

  }

}
0