結果
問題 | No.5 数字のブロック |
ユーザー | cotcotton |
提出日時 | 2018-10-30 05:56:18 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 578 bytes |
コンパイル時間 | 3,322 ms |
コンパイル使用メモリ | 79,916 KB |
実行使用メモリ | 42,900 KB |
最終ジャッジ日時 | 2024-04-30 00:34:00 |
合計ジャッジ時間 | 8,238 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
ソースコード
import java.util.Scanner; import java.util.Arrays; public class Main{ public static void main(String[] args) { Scanner sc1 = new Scanner(System.in); int n = Integer.parseInt(sc1.next()); Scanner sc2 = new Scanner(System.in); int m = Integer.parseInt(sc2.next()); Scanner sc3 = new Scanner(System.in); int[] arr = Arrays.stream(sc3.nextLine().split(" ")) .mapToInt(Integer::parseInt) .toArray(); Arrays.sort(arr); int i = 0; int j = 0; for(i = 0; m > 0; i++) { j += arr[i]; if(j > n) { break; } m--; } System.out.println(i); } }