結果
問題 | No.5 数字のブロック |
ユーザー | Daigo HIROOKA |
提出日時 | 2018-05-11 22:42:48 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 3,821 ms |
コンパイル使用メモリ | 77,684 KB |
実行使用メモリ | 59,520 KB |
最終ジャッジ日時 | 2024-06-28 08:50:33 |
合計ジャッジ時間 | 11,737 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 132 ms
54,044 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 134 ms
53,932 KB |
testcase_21 | AC | 140 ms
53,792 KB |
testcase_22 | AC | 136 ms
53,836 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 132 ms
53,980 KB |
testcase_27 | AC | 130 ms
53,976 KB |
testcase_28 | AC | 131 ms
53,992 KB |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 131 ms
56,100 KB |
testcase_32 | AC | 130 ms
54,164 KB |
testcase_33 | AC | 132 ms
54,420 KB |
ソースコード
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.Arrays; public class NumBlocks{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int L = sc.nextInt(); int N = sc.nextInt(); int[] W = new int[N]; for(int i = 0; i < N; i++){ W[i] = sc.nextInt(); } Arrays.sort(W); int blocks_width = 0; for(int i = 0; i < N; i++){ if(blocks_width + W[i] > L){ System.out.println(i); System.exit(1); }else{ blocks_width += W[i]; } } System.out.println(W.length); } }