結果
問題 | No.1238 選抜クラス |
ユーザー | tenten |
提出日時 | 2020-09-28 11:49:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 372 ms / 2,000 ms |
コード長 | 1,296 bytes |
コンパイル時間 | 3,160 ms |
コンパイル使用メモリ | 78,972 KB |
実行使用メモリ | 61,704 KB |
最終ジャッジ日時 | 2024-07-01 20:51:06 |
合計ジャッジ時間 | 11,861 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,192 KB |
testcase_01 | AC | 133 ms
54,048 KB |
testcase_02 | AC | 138 ms
53,880 KB |
testcase_03 | AC | 132 ms
53,772 KB |
testcase_04 | AC | 136 ms
53,952 KB |
testcase_05 | AC | 132 ms
53,844 KB |
testcase_06 | AC | 132 ms
54,032 KB |
testcase_07 | AC | 134 ms
53,840 KB |
testcase_08 | AC | 139 ms
53,928 KB |
testcase_09 | AC | 155 ms
54,088 KB |
testcase_10 | AC | 137 ms
53,980 KB |
testcase_11 | AC | 144 ms
53,396 KB |
testcase_12 | AC | 140 ms
54,040 KB |
testcase_13 | AC | 144 ms
53,948 KB |
testcase_14 | AC | 137 ms
54,060 KB |
testcase_15 | AC | 149 ms
54,192 KB |
testcase_16 | AC | 147 ms
53,996 KB |
testcase_17 | AC | 340 ms
61,704 KB |
testcase_18 | AC | 308 ms
61,100 KB |
testcase_19 | AC | 333 ms
58,980 KB |
testcase_20 | AC | 372 ms
61,328 KB |
testcase_21 | AC | 347 ms
61,556 KB |
testcase_22 | AC | 146 ms
53,608 KB |
testcase_23 | AC | 163 ms
54,088 KB |
testcase_24 | AC | 162 ms
53,776 KB |
testcase_25 | AC | 146 ms
54,076 KB |
testcase_26 | AC | 294 ms
59,176 KB |
testcase_27 | AC | 358 ms
59,324 KB |
testcase_28 | AC | 329 ms
61,428 KB |
testcase_29 | AC | 317 ms
60,908 KB |
testcase_30 | AC | 171 ms
53,896 KB |
testcase_31 | AC | 201 ms
55,996 KB |
testcase_32 | AC | 318 ms
59,796 KB |
testcase_33 | AC | 134 ms
53,976 KB |
testcase_34 | AC | 236 ms
56,944 KB |
testcase_35 | AC | 185 ms
54,364 KB |
testcase_36 | AC | 160 ms
53,792 KB |
testcase_37 | AC | 179 ms
53,992 KB |
testcase_38 | AC | 320 ms
60,936 KB |
ソースコード
import java.util.*; public class Main { static final int MOD = 1000000007; public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); TreeMap<Integer, Integer> map = new TreeMap<>(); map.put(0, 1); for (int i = 0; i < n; i++) { int x = sc.nextInt() - k; if (x >= 0) { Integer key = Integer.MAX_VALUE; while ((key = map.lowerKey(key)) != null) { int next = key + x; if (map.containsKey(next)) { map.put(next, (map.get(next) + map.get(key)) % MOD); } else { map.put(next, map.get(key)); } } } else { Integer key = Integer.MIN_VALUE; while ((key = map.higherKey(key)) != null) { int next = key + x; if (map.containsKey(next)) { map.put(next, (map.get(next) + map.get(key)) % MOD); } else { map.put(next, map.get(key)); } } } } int total = - 1; for (Map.Entry<Integer, Integer> entry : map.entrySet()) { if (entry.getKey() >= 0) { total += entry.getValue(); total %= MOD; } } System.out.println(total); } }