結果

問題 No.2758 RDQ
ユーザー tentententen
提出日時 2024-05-22 11:57:21
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,367 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 80,308 KB
実行使用メモリ 280,268 KB
最終ジャッジ日時 2024-05-22 11:57:59
合計ジャッジ時間 11,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,152 ms
153,396 KB
testcase_01 AC 277 ms
79,172 KB
testcase_02 AC 268 ms
79,320 KB
testcase_03 AC 276 ms
79,256 KB
testcase_04 AC 294 ms
79,204 KB
testcase_05 AC 267 ms
79,072 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,546 ms
158,380 KB
testcase_12 AC 1,572 ms
157,836 KB
testcase_13 AC 1,612 ms
158,224 KB
testcase_14 AC 1,592 ms
158,232 KB
testcase_15 AC 1,491 ms
158,012 KB
testcase_16 AC 1,557 ms
158,640 KB
testcase_17 AC 1,596 ms
157,748 KB
testcase_18 AC 1,561 ms
158,120 KB
testcase_19 AC 1,530 ms
158,164 KB
testcase_20 AC 1,526 ms
158,056 KB
testcase_21 AC 268 ms
79,060 KB
testcase_22 AC 266 ms
79,356 KB
testcase_23 AC 265 ms
79,312 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());
            }
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int left = sc.nextInt();
            int right  = sc.nextInt();
            int value = sc.nextInt();
            if (!places.containsKey(value)) {
                sb.append("0\n");
                continue;
            }
            sb.append(places.get(value).floorEntry(right).getValue() - places.get(value).lowerEntry(left).getValue()).append("\n");
        }
        System.out.print(sb);
    }
}
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