結果

問題 No.1093 区間の和 / Sum of Range
ユーザー tentententen
提出日時 2023-08-01 17:40:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 2,302 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 85,076 KB
実行使用メモリ 52,304 KB
最終ジャッジ日時 2024-10-11 08:58:28
合計ジャッジ時間 18,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,984 KB
testcase_01 AC 396 ms
48,700 KB
testcase_02 AC 221 ms
44,136 KB
testcase_03 AC 328 ms
51,448 KB
testcase_04 AC 257 ms
46,816 KB
testcase_05 AC 407 ms
49,320 KB
testcase_06 AC 258 ms
44,632 KB
testcase_07 AC 365 ms
46,340 KB
testcase_08 AC 390 ms
50,364 KB
testcase_09 AC 325 ms
46,552 KB
testcase_10 AC 407 ms
50,024 KB
testcase_11 AC 378 ms
48,480 KB
testcase_12 AC 392 ms
50,676 KB
testcase_13 AC 94 ms
38,984 KB
testcase_14 AC 374 ms
49,956 KB
testcase_15 AC 272 ms
45,972 KB
testcase_16 AC 447 ms
51,476 KB
testcase_17 AC 297 ms
46,564 KB
testcase_18 AC 347 ms
49,232 KB
testcase_19 AC 161 ms
41,812 KB
testcase_20 AC 296 ms
48,344 KB
testcase_21 AC 381 ms
48,828 KB
testcase_22 AC 449 ms
51,048 KB
testcase_23 AC 314 ms
46,460 KB
testcase_24 AC 259 ms
46,864 KB
testcase_25 AC 311 ms
46,032 KB
testcase_26 AC 392 ms
51,576 KB
testcase_27 AC 381 ms
49,104 KB
testcase_28 AC 367 ms
50,356 KB
testcase_29 AC 424 ms
49,548 KB
testcase_30 AC 209 ms
44,504 KB
testcase_31 AC 286 ms
47,728 KB
testcase_32 AC 298 ms
47,800 KB
testcase_33 AC 464 ms
52,304 KB
testcase_34 AC 170 ms
42,176 KB
testcase_35 AC 357 ms
48,608 KB
testcase_36 AC 456 ms
51,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    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();
        }
        int[] results = new int[n - k + 1];
        for (int i = 0; i < k; i++) {
            results[0] += values[i];
        }
        for (int i = k; i < n; i++) {
            results[i - k + 1] = results[i - k] - values[i - k] + values[i];
        }
        Arrays.sort(results);
        TreeMap<Integer, Integer> counts = new TreeMap<>();
        for (int i = 0; i <= n - k; i++) {
            counts.put(results[i], i + 1);
        }
        counts.put(Integer.MIN_VALUE, 0);
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            sb.append(counts.floorEntry(sc.nextInt()).getValue()).append("\n");
        }
        System.out.print(sb);
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0