結果
問題 | No.1046 Fruits Rush |
ユーザー | ks2m |
提出日時 | 2020-05-08 21:24:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 472 bytes |
コンパイル時間 | 3,203 ms |
コンパイル使用メモリ | 74,728 KB |
実行使用メモリ | 54,588 KB |
最終ジャッジ日時 | 2024-07-03 23:33:15 |
合計ジャッジ時間 | 5,592 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 124 ms
53,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 136 ms
54,116 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 111 ms
53,060 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { 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(); } sc.close(); Arrays.sort(a); int ans = a[0]; for (int i = n - 2; i >= n - k; i--) { if (a[i] >= 0) { ans += a[i]; } } System.out.println(ans); } }