結果

問題 No.2931 Shibuya 109
ユーザー tentententen
提出日時 2024-10-21 13:00:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,040 ms / 4,000 ms
コード長 1,900 bytes
コンパイル時間 2,832 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 101,924 KB
最終ジャッジ日時 2024-10-21 13:01:16
合計ジャッジ時間 20,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,010 ms
101,440 KB
testcase_01 AC 1,021 ms
101,012 KB
testcase_02 AC 973 ms
101,924 KB
testcase_03 AC 1,007 ms
100,860 KB
testcase_04 AC 1,040 ms
101,100 KB
testcase_05 AC 999 ms
100,748 KB
testcase_06 AC 1,036 ms
100,920 KB
testcase_07 AC 498 ms
63,528 KB
testcase_08 AC 879 ms
89,708 KB
testcase_09 AC 961 ms
88,592 KB
testcase_10 AC 935 ms
87,692 KB
testcase_11 AC 70 ms
51,104 KB
testcase_12 AC 70 ms
50,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        int[] counts = new int[n + 1];
        Set<Integer> places = new HashSet<>();
        for (int i = 1; i <= n; i++) {
            counts[i] = counts[i - 1];
            int x = sc.nextInt();
            if (x == 9) {
                counts[i]++;
            } else if (x == 1) {
                places.add(i);
            }
        }
        String result = IntStream.range(0, q).mapToObj(aa -> {
            int left = sc.nextInt();
            int right = sc.nextInt();
            long ans = counts[right] - counts[left - 1];
            for (int x : places) {
                if (x >= left && x <= right) {
                    ans += right - x;
                }
            }
            return String.valueOf(ans);
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0