結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2018-10-30 05:17:17 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 587 bytes |
コンパイル時間 | 2,447 ms |
コンパイル使用メモリ | 79,336 KB |
実行使用メモリ | 57,424 KB |
最終ジャッジ日時 | 2024-11-19 10:27:54 |
合計ジャッジ時間 | 8,903 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 12 RE * 22 |
ソースコード
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 j = 0; int m1 = m; for(int i = 0; j <= n; i++) { j += arr[i]; m--; if(m == 0) { break; } } System.out.println(m1-m); } }