結果

問題 No.2462 七人カノン
ユーザー tentententen
提出日時 2023-09-19 16:56:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 2,371 bytes
コンパイル時間 3,027 ms
コンパイル使用メモリ 84,788 KB
実行使用メモリ 58,408 KB
最終ジャッジ日時 2024-07-05 21:43:56
合計ジャッジ時間 15,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,540 KB
testcase_01 AC 61 ms
39,532 KB
testcase_02 AC 61 ms
39,352 KB
testcase_03 AC 97 ms
40,300 KB
testcase_04 AC 91 ms
40,024 KB
testcase_05 AC 92 ms
39,984 KB
testcase_06 AC 96 ms
40,572 KB
testcase_07 AC 92 ms
40,152 KB
testcase_08 AC 93 ms
40,256 KB
testcase_09 AC 89 ms
40,468 KB
testcase_10 AC 99 ms
40,044 KB
testcase_11 AC 94 ms
40,072 KB
testcase_12 AC 93 ms
40,448 KB
testcase_13 AC 384 ms
53,128 KB
testcase_14 AC 388 ms
53,516 KB
testcase_15 AC 377 ms
54,044 KB
testcase_16 AC 421 ms
53,828 KB
testcase_17 AC 411 ms
53,700 KB
testcase_18 AC 152 ms
46,724 KB
testcase_19 AC 146 ms
46,340 KB
testcase_20 AC 417 ms
58,204 KB
testcase_21 AC 416 ms
57,880 KB
testcase_22 AC 423 ms
57,328 KB
testcase_23 AC 424 ms
58,408 KB
testcase_24 AC 413 ms
52,264 KB
testcase_25 AC 451 ms
56,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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[] imos = new int[100002];
        int[] idxes = new int[q];
        int[] lefts = new int[q];
        int[] rights = new int[q];
        for (int i = 0; i < q; i++) {
            idxes[i] = sc.nextInt() - 1;
            lefts[i] = sc.nextInt();
            rights[i] = sc.nextInt();
            imos[lefts[i] + 1]++;
            imos[rights[i] + 1]--;
        }
        double[] sums = new double[100001];
        for (int i = 1; i <= 100000; i++) {
            sums[i] = sums[i - 1];
            imos[i] += imos[i - 1];
            if (imos[i] > 0) {
                sums[i] += 1.0 / imos[i];
            }
        }
        double[] ans = new double[n];
        for (int i = 0; i < q; i++) {
            ans[idxes[i]] += sums[rights[i]] - sums[lefts[i]]; 
        }
        System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0