結果

問題 No.852 連続部分文字列
ユーザー tentententen
提出日時 2023-03-15 11:55:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 731 ms / 3,153 ms
コード長 2,209 bytes
コンパイル時間 2,564 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 119,044 KB
最終ジャッジ日時 2024-09-18 08:39:52
合計ジャッジ時間 14,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,184 KB
testcase_01 AC 51 ms
50,604 KB
testcase_02 AC 52 ms
49,944 KB
testcase_03 AC 51 ms
49,988 KB
testcase_04 AC 50 ms
50,184 KB
testcase_05 AC 49 ms
50,316 KB
testcase_06 AC 49 ms
50,068 KB
testcase_07 AC 49 ms
50,456 KB
testcase_08 AC 50 ms
50,416 KB
testcase_09 AC 50 ms
50,420 KB
testcase_10 AC 49 ms
50,068 KB
testcase_11 AC 50 ms
50,204 KB
testcase_12 AC 49 ms
50,128 KB
testcase_13 AC 106 ms
52,496 KB
testcase_14 AC 94 ms
52,260 KB
testcase_15 AC 119 ms
52,756 KB
testcase_16 AC 106 ms
52,580 KB
testcase_17 AC 104 ms
52,768 KB
testcase_18 AC 115 ms
52,696 KB
testcase_19 AC 56 ms
50,180 KB
testcase_20 AC 95 ms
52,588 KB
testcase_21 AC 123 ms
54,792 KB
testcase_22 AC 88 ms
52,328 KB
testcase_23 AC 106 ms
52,556 KB
testcase_24 AC 96 ms
52,336 KB
testcase_25 AC 108 ms
52,780 KB
testcase_26 AC 113 ms
52,600 KB
testcase_27 AC 104 ms
52,664 KB
testcase_28 AC 111 ms
52,556 KB
testcase_29 AC 125 ms
54,736 KB
testcase_30 AC 86 ms
51,912 KB
testcase_31 AC 112 ms
54,804 KB
testcase_32 AC 124 ms
54,692 KB
testcase_33 AC 721 ms
118,536 KB
testcase_34 AC 731 ms
118,052 KB
testcase_35 AC 693 ms
118,760 KB
testcase_36 AC 709 ms
119,028 KB
testcase_37 AC 720 ms
106,548 KB
testcase_38 AC 714 ms
106,460 KB
testcase_39 AC 684 ms
118,880 KB
testcase_40 AC 681 ms
118,552 KB
testcase_41 AC 710 ms
119,044 KB
testcase_42 AC 666 ms
118,832 KB
testcase_43 AC 691 ms
118,880 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();
        int length = inputs.length;
        ArrayList<TreeSet<Integer>> places = new ArrayList<>();
        for (int i = 0; i < 26; i++) {
            places.add(new TreeSet<>());
            places.get(i).add(length);
        }
        for (int i = 0; i < length; i++) {
            places.get(inputs[i] - 'a').add(i);
        }
        double ans = 0;
        for (TreeSet<Integer> current : places) {
            int prev = -1;
            for (int x : current) {
                long distance = x - prev - 1;
                ans += distance * (distance + 1) / 2;
                prev = x;
            }
            
        }
        long all = length * (length + 1L) / 2;
        ans = all * 26 - ans;
        System.out.println(ans / all);
    }
}
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