結果

問題 No.852 連続部分文字列
ユーザー tentententen
提出日時 2020-08-31 17:56:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 462 ms / 3,153 ms
コード長 1,012 bytes
コンパイル時間 3,124 ms
コンパイル使用メモリ 79,572 KB
実行使用メモリ 73,804 KB
最終ジャッジ日時 2024-11-16 18:32:54
合計ジャッジ時間 13,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,328 KB
testcase_01 AC 103 ms
39,932 KB
testcase_02 AC 119 ms
40,980 KB
testcase_03 AC 102 ms
39,816 KB
testcase_04 AC 95 ms
39,628 KB
testcase_05 AC 98 ms
39,816 KB
testcase_06 AC 102 ms
40,480 KB
testcase_07 AC 111 ms
41,676 KB
testcase_08 AC 91 ms
39,276 KB
testcase_09 AC 98 ms
39,912 KB
testcase_10 AC 103 ms
40,508 KB
testcase_11 AC 100 ms
40,552 KB
testcase_12 AC 103 ms
40,812 KB
testcase_13 AC 159 ms
42,164 KB
testcase_14 AC 140 ms
41,580 KB
testcase_15 AC 178 ms
42,436 KB
testcase_16 AC 153 ms
42,080 KB
testcase_17 AC 144 ms
42,272 KB
testcase_18 AC 164 ms
42,708 KB
testcase_19 AC 113 ms
40,720 KB
testcase_20 AC 138 ms
41,588 KB
testcase_21 AC 146 ms
42,512 KB
testcase_22 AC 138 ms
41,504 KB
testcase_23 AC 146 ms
42,224 KB
testcase_24 AC 148 ms
41,760 KB
testcase_25 AC 165 ms
41,856 KB
testcase_26 AC 172 ms
42,184 KB
testcase_27 AC 142 ms
42,132 KB
testcase_28 AC 164 ms
42,400 KB
testcase_29 AC 172 ms
42,136 KB
testcase_30 AC 126 ms
40,740 KB
testcase_31 AC 174 ms
42,748 KB
testcase_32 AC 174 ms
42,800 KB
testcase_33 AC 447 ms
73,540 KB
testcase_34 AC 447 ms
73,400 KB
testcase_35 AC 448 ms
73,752 KB
testcase_36 AC 428 ms
73,568 KB
testcase_37 AC 453 ms
73,360 KB
testcase_38 AC 462 ms
73,692 KB
testcase_39 AC 453 ms
73,444 KB
testcase_40 AC 457 ms
73,804 KB
testcase_41 AC 461 ms
73,688 KB
testcase_42 AC 458 ms
72,948 KB
testcase_43 AC 429 ms
72,116 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();
    	int length = arr.length;
    	HashMap<Integer, ArrayList<Integer>> charPlace = new HashMap<>();
    	for (int i = 0; i < 26; i++) {
    	    charPlace.put(i, new ArrayList<>());
    	}
    	for (int i = 0; i < length; i++) {
    	    charPlace.get(arr[i] - 'a').add(i);
    	}
    	int[] idxes = new int[26];
    	int[] places = new int[26];
    	for (int i = 0; i < 26; i++) {
    	    charPlace.get(i).add(length);
    	    places[i] = charPlace.get(i).get(0);
    	}
    	double total = 0;
    	for (int i = 0; i < length; i++) {
    	    for (int j = 0; j < 26; j++) {
    	        total += length - places[j];
    	    }
    	    int idx = arr[i] - 'a';
    	    idxes[idx]++;
    	    places[idx] = charPlace.get(idx).get(idxes[idx]);
    	}
    	double ans = total / length / (length + 1) * 2;
    	System.out.println(ans);
    }
}
0