結果
問題 | No.5 数字のブロック |
ユーザー | YOSHI |
提出日時 | 2021-02-17 10:15:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 775 bytes |
コンパイル時間 | 4,013 ms |
コンパイル使用メモリ | 75,388 KB |
実行使用メモリ | 43,712 KB |
最終ジャッジ日時 | 2024-09-13 20:34:49 |
合計ジャッジ時間 | 10,887 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,176 KB |
testcase_01 | AC | 125 ms
40,904 KB |
testcase_02 | AC | 123 ms
41,188 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 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 126 ms
41,228 KB |
testcase_21 | AC | 124 ms
41,164 KB |
testcase_22 | AC | 123 ms
41,304 KB |
testcase_23 | AC | 126 ms
40,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 127 ms
41,160 KB |
testcase_27 | AC | 126 ms
41,240 KB |
testcase_28 | AC | 113 ms
40,000 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 126 ms
40,988 KB |
testcase_32 | AC | 125 ms
41,420 KB |
testcase_33 | AC | 127 ms
41,036 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class No00000005_Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int lineCnt = 0; int l = 0; int n = 0; String[] wi = null; while(scan.hasNextLine()) { lineCnt++; if(lineCnt == 1) { l = Integer.parseInt(scan.nextLine()); } else if(lineCnt == 2) { n = Integer.parseInt(scan.nextLine()); } else if(lineCnt == 3) { wi = scan.nextLine().split(" "); } if(lineCnt == 3) { break; } } Arrays.sort(wi); int cnt = 0; int sum = 0; for(int i = 0; i < n; i++) { int temp = Integer.parseInt(wi[i]); if(sum + temp > l) { break; } sum += temp; cnt++; } System.out.println(cnt); scan.close(); } }