結果

問題 No.1238 選抜クラス
ユーザー tentententen
提出日時 2021-12-01 08:52:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 2,069 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 60,264 KB
最終ジャッジ日時 2024-07-04 07:33:08
合計ジャッジ時間 8,139 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,088 KB
testcase_01 AC 54 ms
50,024 KB
testcase_02 AC 56 ms
50,404 KB
testcase_03 AC 54 ms
50,000 KB
testcase_04 AC 53 ms
50,344 KB
testcase_05 AC 54 ms
50,172 KB
testcase_06 AC 54 ms
50,228 KB
testcase_07 AC 53 ms
50,300 KB
testcase_08 AC 55 ms
50,028 KB
testcase_09 AC 78 ms
51,144 KB
testcase_10 AC 53 ms
49,988 KB
testcase_11 AC 60 ms
50,124 KB
testcase_12 AC 57 ms
50,328 KB
testcase_13 AC 57 ms
50,248 KB
testcase_14 AC 56 ms
50,104 KB
testcase_15 AC 69 ms
50,472 KB
testcase_16 AC 78 ms
50,988 KB
testcase_17 AC 230 ms
58,924 KB
testcase_18 AC 194 ms
58,232 KB
testcase_19 AC 220 ms
57,712 KB
testcase_20 AC 253 ms
59,836 KB
testcase_21 AC 237 ms
60,264 KB
testcase_22 AC 52 ms
50,376 KB
testcase_23 AC 86 ms
50,952 KB
testcase_24 AC 85 ms
51,144 KB
testcase_25 AC 54 ms
50,368 KB
testcase_26 AC 200 ms
57,852 KB
testcase_27 AC 251 ms
57,748 KB
testcase_28 AC 209 ms
58,728 KB
testcase_29 AC 197 ms
58,504 KB
testcase_30 AC 97 ms
51,984 KB
testcase_31 AC 120 ms
54,216 KB
testcase_32 AC 203 ms
57,356 KB
testcase_33 AC 53 ms
50,092 KB
testcase_34 AC 144 ms
54,916 KB
testcase_35 AC 93 ms
51,996 KB
testcase_36 AC 90 ms
52,040 KB
testcase_37 AC 105 ms
52,292 KB
testcase_38 AC 196 ms
58,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt() - k;
        }
        TreeMap<Integer, Integer> map = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            if (values[i] < 0) {
                Integer key = Integer.MIN_VALUE;
                while ((key = map.higherKey(key)) != null) {
                    int next = key + values[i];
                    map.put(next, (map.getOrDefault(next, 0) + map.get(key)) % MOD);
                }
            } else {
                Integer key = Integer.MAX_VALUE;
                while ((key = map.lowerKey(key)) != null) {
                    int next = key + values[i];
                    map.put(next, (map.getOrDefault(next, 0) + map.get(key)) % MOD);
                }
           }
           map.put(values[i], (map.getOrDefault(values[i], 0) + 1) % MOD);
        }
        int ans = 0;
        for (int x : map.keySet()) {
            if (x < 0) {
                continue;
            }
            ans += map.get(x);
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0