結果

問題 No.852 連続部分文字列
ユーザー tentententen
提出日時 2024-07-22 13:21:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,013 ms / 3,153 ms
コード長 1,931 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 79,916 KB
実行使用メモリ 118,176 KB
最終ジャッジ日時 2024-07-22 13:21:56
合計ジャッジ時間 19,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,292 KB
testcase_01 AC 58 ms
50,416 KB
testcase_02 AC 66 ms
50,400 KB
testcase_03 AC 57 ms
50,024 KB
testcase_04 AC 57 ms
50,576 KB
testcase_05 AC 54 ms
50,456 KB
testcase_06 AC 56 ms
50,356 KB
testcase_07 AC 54 ms
50,328 KB
testcase_08 AC 54 ms
50,452 KB
testcase_09 AC 53 ms
50,340 KB
testcase_10 AC 55 ms
50,024 KB
testcase_11 AC 54 ms
50,324 KB
testcase_12 AC 55 ms
50,468 KB
testcase_13 AC 135 ms
52,396 KB
testcase_14 AC 107 ms
52,428 KB
testcase_15 AC 144 ms
52,532 KB
testcase_16 AC 132 ms
52,652 KB
testcase_17 AC 142 ms
52,412 KB
testcase_18 AC 148 ms
52,640 KB
testcase_19 AC 85 ms
51,776 KB
testcase_20 AC 120 ms
52,464 KB
testcase_21 AC 152 ms
55,616 KB
testcase_22 AC 112 ms
52,620 KB
testcase_23 AC 125 ms
52,564 KB
testcase_24 AC 107 ms
52,580 KB
testcase_25 AC 138 ms
52,568 KB
testcase_26 AC 148 ms
52,304 KB
testcase_27 AC 129 ms
52,560 KB
testcase_28 AC 137 ms
52,612 KB
testcase_29 AC 150 ms
54,992 KB
testcase_30 AC 103 ms
52,448 KB
testcase_31 AC 150 ms
55,304 KB
testcase_32 AC 156 ms
55,804 KB
testcase_33 AC 1,003 ms
115,972 KB
testcase_34 AC 1,013 ms
115,844 KB
testcase_35 AC 983 ms
116,168 KB
testcase_36 AC 987 ms
116,144 KB
testcase_37 AC 975 ms
116,236 KB
testcase_38 AC 977 ms
118,176 KB
testcase_39 AC 989 ms
115,976 KB
testcase_40 AC 999 ms
116,064 KB
testcase_41 AC 1,000 ms
116,200 KB
testcase_42 AC 945 ms
115,848 KB
testcase_43 AC 935 ms
115,732 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();
        char[] inputs = sc.next().toCharArray();
        List<TreeSet<Integer>> positions = new ArrayList<>();
        for (int i = 0; i < 26; i++) {
            positions.add(new TreeSet<>());
            positions.get(i).add(-1);
            positions.get(i).add(inputs.length);
        }
        long ans = (inputs.length + 1L) * inputs.length / 2 * 26;
        double base = (inputs.length + 1L) * inputs.length / 2;
        for (int i = 0; i < inputs.length; i++) {
            positions.get(inputs[i] - 'a').add(i);
        }
        for (TreeSet<Integer> current : positions) {
            Integer key = current.first();
            while ((key = current.higher(key)) != null) {
                int size = key - current.lower(key) - 1;
                ans -= (size + 1L) * size / 2;
            }
        }
        System.out.println(ans / base);
    }
}
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