結果

問題 No.852 連続部分文字列
ユーザー tentententen
提出日時 2023-04-24 17:23:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 776 ms / 3,153 ms
コード長 2,185 bytes
コンパイル時間 4,366 ms
コンパイル使用メモリ 84,616 KB
実行使用メモリ 106,504 KB
最終ジャッジ日時 2024-11-08 18:16:10
合計ジャッジ時間 15,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,928 KB
testcase_01 AC 46 ms
37,076 KB
testcase_02 AC 48 ms
37,236 KB
testcase_03 AC 49 ms
36,844 KB
testcase_04 AC 49 ms
37,340 KB
testcase_05 AC 51 ms
37,336 KB
testcase_06 AC 51 ms
36,872 KB
testcase_07 AC 50 ms
36,992 KB
testcase_08 AC 46 ms
36,852 KB
testcase_09 AC 46 ms
36,848 KB
testcase_10 AC 46 ms
37,044 KB
testcase_11 AC 46 ms
37,240 KB
testcase_12 AC 46 ms
37,124 KB
testcase_13 AC 108 ms
40,200 KB
testcase_14 AC 90 ms
39,660 KB
testcase_15 AC 116 ms
40,980 KB
testcase_16 AC 99 ms
40,056 KB
testcase_17 AC 118 ms
40,824 KB
testcase_18 AC 124 ms
40,876 KB
testcase_19 AC 65 ms
37,588 KB
testcase_20 AC 99 ms
39,928 KB
testcase_21 AC 128 ms
41,244 KB
testcase_22 AC 93 ms
39,468 KB
testcase_23 AC 115 ms
40,564 KB
testcase_24 AC 98 ms
39,752 KB
testcase_25 AC 113 ms
40,476 KB
testcase_26 AC 125 ms
41,148 KB
testcase_27 AC 116 ms
40,232 KB
testcase_28 AC 102 ms
40,528 KB
testcase_29 AC 123 ms
41,056 KB
testcase_30 AC 88 ms
39,196 KB
testcase_31 AC 133 ms
41,120 KB
testcase_32 AC 129 ms
41,464 KB
testcase_33 AC 761 ms
106,120 KB
testcase_34 AC 761 ms
106,368 KB
testcase_35 AC 761 ms
105,976 KB
testcase_36 AC 774 ms
105,912 KB
testcase_37 AC 776 ms
106,504 KB
testcase_38 AC 755 ms
106,184 KB
testcase_39 AC 766 ms
106,256 KB
testcase_40 AC 767 ms
105,968 KB
testcase_41 AC 769 ms
106,164 KB
testcase_42 AC 703 ms
106,124 KB
testcase_43 AC 725 ms
106,308 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();
        char[] inputs = sc.next().toCharArray();
        ArrayList<TreeSet<Integer>> places = new ArrayList<>();
        for (int i = 0; i < 26; i++) {
            places.add(new TreeSet<>());
            places.get(i).add(inputs.length);
        }
        for (int i = 0; i < inputs.length; i++) {
            places.get(inputs[i] - 'a').add(i);
        }
        double total = 26.0 * inputs.length * (inputs.length + 1) / 2;
        for (TreeSet<Integer> tmp : places) {
            int prev = -1;
            for (int x : tmp) {
                long count = x - prev - 1;
                total -= count * (count + 1) / 2;
                prev = x;
            }
        }
        total /= inputs.length * (inputs.length + 1L) / 2;
        System.out.println(total);

    }
}
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