結果

問題 No.852 連続部分文字列
ユーザー htensaihtensai
提出日時 2020-02-14 12:47:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 437 ms / 3,153 ms
コード長 814 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 85,096 KB
最終ジャッジ日時 2024-10-06 07:53:08
合計ジャッジ時間 13,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,952 KB
testcase_01 AC 115 ms
54,196 KB
testcase_02 AC 117 ms
53,996 KB
testcase_03 AC 113 ms
54,096 KB
testcase_04 AC 101 ms
52,856 KB
testcase_05 AC 117 ms
53,796 KB
testcase_06 AC 115 ms
54,336 KB
testcase_07 AC 104 ms
52,668 KB
testcase_08 AC 119 ms
54,100 KB
testcase_09 AC 107 ms
53,052 KB
testcase_10 AC 113 ms
53,980 KB
testcase_11 AC 115 ms
54,152 KB
testcase_12 AC 115 ms
54,036 KB
testcase_13 AC 144 ms
54,612 KB
testcase_14 AC 140 ms
54,096 KB
testcase_15 AC 151 ms
54,456 KB
testcase_16 AC 160 ms
54,044 KB
testcase_17 AC 135 ms
53,544 KB
testcase_18 AC 139 ms
53,300 KB
testcase_19 AC 129 ms
53,928 KB
testcase_20 AC 164 ms
54,444 KB
testcase_21 AC 168 ms
54,308 KB
testcase_22 AC 145 ms
54,368 KB
testcase_23 AC 155 ms
53,744 KB
testcase_24 AC 148 ms
54,116 KB
testcase_25 AC 154 ms
54,204 KB
testcase_26 AC 157 ms
54,084 KB
testcase_27 AC 159 ms
56,332 KB
testcase_28 AC 152 ms
54,200 KB
testcase_29 AC 154 ms
54,304 KB
testcase_30 AC 139 ms
54,080 KB
testcase_31 AC 145 ms
53,416 KB
testcase_32 AC 158 ms
56,308 KB
testcase_33 AC 411 ms
84,044 KB
testcase_34 AC 396 ms
84,204 KB
testcase_35 AC 416 ms
73,608 KB
testcase_36 AC 420 ms
73,224 KB
testcase_37 AC 386 ms
85,096 KB
testcase_38 AC 416 ms
73,784 KB
testcase_39 AC 411 ms
73,244 KB
testcase_40 AC 437 ms
73,564 KB
testcase_41 AC 436 ms
73,216 KB
testcase_42 AC 405 ms
73,160 KB
testcase_43 AC 396 ms
72,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		long length = arr.length;
		HashMap<Character, ArrayList<Integer>> map = new HashMap<>();
		for (int i = 'a'; i <= 'z'; i++) {
		    map.put((char)i, new ArrayList<Integer>());
		}
		for (int i = 0; i < length; i++) {
		    map.get(arr[i]).add(i);
		}
		long sum = 0;
		for (ArrayList<Integer> list : map.values()) {
		    int start = 0;
		    for (int x : list) {
		        long size = x - start;
		        sum += size * (size + 1) / 2;
		        start = x + 1;
		    }
		    long size = length - start;
		    sum += size * (size + 1) / 2;
		}
		System.out.println((26 * length * (length + 1) / 2 - (double)sum) / length / (length + 1) * 2);
  }
}
0