結果
問題 | No.5 数字のブロック |
ユーザー | TatsuDX |
提出日時 | 2016-09-03 18:09:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 3,911 ms |
コンパイル使用メモリ | 75,292 KB |
実行使用メモリ | 59,988 KB |
最終ジャッジ日時 | 2024-11-15 19:05:08 |
合計ジャッジ時間 | 11,512 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
53,700 KB |
testcase_01 | AC | 135 ms
53,580 KB |
testcase_02 | AC | 136 ms
53,988 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 | AC | 153 ms
54,196 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 136 ms
53,780 KB |
testcase_21 | WA | - |
testcase_22 | AC | 136 ms
53,880 KB |
testcase_23 | AC | 136 ms
53,932 KB |
testcase_24 | WA | - |
testcase_25 | AC | 190 ms
54,340 KB |
testcase_26 | AC | 136 ms
53,872 KB |
testcase_27 | AC | 136 ms
53,884 KB |
testcase_28 | AC | 136 ms
53,684 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 136 ms
54,124 KB |
testcase_32 | AC | 134 ms
53,788 KB |
testcase_33 | AC | 134 ms
54,096 KB |
ソースコード
import java.util.Scanner; import java.util.Set; import java.util.TreeSet; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Set<Integer> set = new TreeSet<Integer>(); int len = sc.nextInt(), n = sc.nextInt(); for(int i = 0; i < n; i++){ set.add(sc.nextInt()); } int cnt = 0, sum = 0; for(int i : set){ sum += i; if(sum <= len){ cnt++; } else { break; } } System.out.println(cnt); } }