結果

問題 No.2758 RDQ
ユーザー tentententen
提出日時 2024-05-22 11:53:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,443 bytes
コンパイル時間 2,655 ms
コンパイル使用メモリ 84,260 KB
実行使用メモリ 288,248 KB
最終ジャッジ日時 2024-05-22 11:53:40
合計ジャッジ時間 11,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,475 ms
154,144 KB
testcase_01 AC 276 ms
79,200 KB
testcase_02 AC 285 ms
79,072 KB
testcase_03 AC 320 ms
78,904 KB
testcase_04 AC 293 ms
79,116 KB
testcase_05 AC 291 ms
79,096 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,653 ms
160,220 KB
testcase_12 AC 1,702 ms
161,952 KB
testcase_13 AC 1,642 ms
159,588 KB
testcase_14 AC 1,731 ms
159,732 KB
testcase_15 AC 1,605 ms
159,668 KB
testcase_16 AC 1,699 ms
162,064 KB
testcase_17 AC 1,761 ms
159,716 KB
testcase_18 AC 1,712 ms
162,424 KB
testcase_19 AC 1,714 ms
158,932 KB
testcase_20 AC 1,809 ms
160,032 KB
testcase_21 AC 287 ms
78,924 KB
testcase_22 AC 325 ms
79,244 KB
testcase_23 AC 291 ms
79,812 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();
        List<List<Integer>> current = new ArrayList<>();
        for (int i = 0; i <= 100000; i++) {
            current.add(new ArrayList<>());
        }
        for (int i = 1; i <= 100000; i++) {
            for (int j = 1; j * i <= 100000; j++) {
                current.get(j * i).add(i);
            }
        }
        Map<Integer, TreeMap<Integer, Integer>> places = new HashMap<>();
        for (int i = 1; i <= n; i++) {
            int a = sc.nextInt();
            for (int x : current.get(a)) {
                if (!places.containsKey(x)) {
                    places.put(x, new TreeMap<>());
                    places.get(x).put(0, 0);
                }
                places.get(x).put(i, places.get(x).size());
            }
        }
        String result = IntStream.range(0, q).mapToObj(i -> getCount(places, sc.nextInt(), sc.nextInt(), sc.nextInt()))
            .collect(Collectors.joining("\n"));
        System.out.println(result);
    }
    
    static String getCount(Map<Integer, TreeMap<Integer, Integer>> places, int left, int right, int value) {
        if (places.containsKey(value)) {
            return String.valueOf(places.get(value).floorEntry(right).getValue() - places.get(value).lowerEntry(left).getValue());
        } else {
            return "0";
        }
        
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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