結果

問題 No.2758 RDQ
ユーザー tentententen
提出日時 2024-05-22 11:24:59
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,548 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 90,860 KB
実行使用メモリ 294,856 KB
最終ジャッジ日時 2024-05-22 11:25:34
合計ジャッジ時間 10,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,029 ms
120,996 KB
testcase_01 AC 58 ms
50,760 KB
testcase_02 AC 60 ms
50,972 KB
testcase_03 AC 68 ms
51,004 KB
testcase_04 AC 61 ms
51,028 KB
testcase_05 AC 65 ms
50,772 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,423 ms
139,564 KB
testcase_12 AC 1,341 ms
138,160 KB
testcase_13 AC 1,378 ms
137,844 KB
testcase_14 AC 1,301 ms
137,680 KB
testcase_15 AC 1,351 ms
138,516 KB
testcase_16 AC 1,366 ms
137,684 KB
testcase_17 AC 1,326 ms
137,776 KB
testcase_18 AC 1,402 ms
137,832 KB
testcase_19 AC 1,297 ms
137,708 KB
testcase_20 AC 1,408 ms
137,892 KB
testcase_21 AC 58 ms
51,096 KB
testcase_22 AC 57 ms
50,548 KB
testcase_23 AC 60 ms
52,808 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();
        Map<Integer, TreeMap<Integer, Integer>> places = new HashMap<>();
        for (int i = 1; i <= n; i++) {
            int a = sc.nextInt();
            for (int j = 1; j <= Math.sqrt(a); j++) {
                if (a % j == 0) {
                    if (!places.containsKey(j)) {
                        places.put(j, new TreeMap<>());
                        places.get(j).put(0, 0);
                    }
                    places.get(j).put(i, places.get(j).size());
                    if (j * j < a) {
                        if (!places.containsKey(a / j)) {
                            places.put(a / j, new TreeMap<>());
                            places.get(a / j).put(0, 0);
                        }
                        places.get(a / j).put(i, places.get(a / j).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