結果

問題 No.1093 区間の和 / Sum of Range
ユーザー tentententen
提出日時 2020-12-28 19:06:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 824 ms / 2,000 ms
コード長 1,488 bytes
コンパイル時間 2,986 ms
コンパイル使用メモリ 78,320 KB
実行使用メモリ 58,636 KB
最終ジャッジ日時 2024-10-03 11:40:35
合計ジャッジ時間 26,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,644 KB
testcase_01 AC 640 ms
50,364 KB
testcase_02 AC 466 ms
48,948 KB
testcase_03 AC 546 ms
49,300 KB
testcase_04 AC 525 ms
49,076 KB
testcase_05 AC 686 ms
56,920 KB
testcase_06 AC 433 ms
48,724 KB
testcase_07 AC 599 ms
49,716 KB
testcase_08 AC 621 ms
49,916 KB
testcase_09 AC 571 ms
54,308 KB
testcase_10 AC 605 ms
51,040 KB
testcase_11 AC 651 ms
51,100 KB
testcase_12 AC 619 ms
50,016 KB
testcase_13 AC 194 ms
45,184 KB
testcase_14 AC 685 ms
51,940 KB
testcase_15 AC 458 ms
49,072 KB
testcase_16 AC 800 ms
58,160 KB
testcase_17 AC 605 ms
51,416 KB
testcase_18 AC 527 ms
49,940 KB
testcase_19 AC 281 ms
47,744 KB
testcase_20 AC 513 ms
50,344 KB
testcase_21 AC 739 ms
57,772 KB
testcase_22 AC 758 ms
57,128 KB
testcase_23 AC 613 ms
50,120 KB
testcase_24 AC 528 ms
48,964 KB
testcase_25 AC 683 ms
56,160 KB
testcase_26 AC 664 ms
52,832 KB
testcase_27 AC 692 ms
56,408 KB
testcase_28 AC 632 ms
50,200 KB
testcase_29 AC 810 ms
58,636 KB
testcase_30 AC 370 ms
48,472 KB
testcase_31 AC 494 ms
48,784 KB
testcase_32 AC 514 ms
49,544 KB
testcase_33 AC 824 ms
55,904 KB
testcase_34 AC 262 ms
47,884 KB
testcase_35 AC 662 ms
51,304 KB
testcase_36 AC 818 ms
56,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] sums = new int[n + 1];
        int[] values = new int[n - k + 2];
        for (int i = 1; i <= n; i++) {
            sums[i] = sums[i - 1] + sc.nextInt();
            if (i - k >= 0) {
                values[i - k] = sums[i] - sums[i - k];
            }
        }
        values[n - k + 1] = Integer.MAX_VALUE;
        Arrays.sort(values);
        int q = sc.nextInt();
        Question[] questions = new Question[q];
        for (int i = 0; i < q; i++) {
            questions[i] = new Question(i, sc.nextInt());
        }
        Arrays.sort(questions);
        int[] ans = new int[q];
        int idx = 0;
        for (Question x : questions) {
            while (values[idx] <= x.value) {
                idx++;
            }
            ans[x.idx] = idx;
        }
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Question implements Comparable<Question> {
        int idx;
        int value;
        public Question(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Question another) {
            return value - another.value;
        }
    }
}
0