結果

問題 No.852 連続部分文字列
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-05 23:14:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 346 ms / 3,153 ms
コード長 767 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 77,468 KB
実行使用メモリ 74,164 KB
最終ジャッジ日時 2024-06-22 13:19:35
合計ジャッジ時間 12,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,188 KB
testcase_01 AC 129 ms
53,880 KB
testcase_02 AC 128 ms
53,836 KB
testcase_03 AC 127 ms
53,768 KB
testcase_04 AC 129 ms
54,004 KB
testcase_05 AC 130 ms
53,996 KB
testcase_06 AC 127 ms
54,144 KB
testcase_07 AC 129 ms
54,104 KB
testcase_08 AC 127 ms
53,844 KB
testcase_09 AC 130 ms
53,852 KB
testcase_10 AC 127 ms
53,992 KB
testcase_11 AC 127 ms
54,360 KB
testcase_12 AC 126 ms
54,144 KB
testcase_13 AC 149 ms
53,876 KB
testcase_14 AC 143 ms
54,008 KB
testcase_15 AC 154 ms
54,096 KB
testcase_16 AC 148 ms
53,952 KB
testcase_17 AC 156 ms
53,984 KB
testcase_18 AC 158 ms
54,136 KB
testcase_19 AC 133 ms
54,208 KB
testcase_20 AC 144 ms
54,108 KB
testcase_21 AC 155 ms
54,200 KB
testcase_22 AC 144 ms
54,028 KB
testcase_23 AC 150 ms
53,844 KB
testcase_24 AC 140 ms
54,696 KB
testcase_25 AC 148 ms
54,184 KB
testcase_26 AC 157 ms
54,024 KB
testcase_27 AC 149 ms
53,780 KB
testcase_28 AC 153 ms
53,792 KB
testcase_29 AC 156 ms
54,104 KB
testcase_30 AC 149 ms
53,936 KB
testcase_31 AC 157 ms
54,360 KB
testcase_32 AC 156 ms
54,292 KB
testcase_33 AC 335 ms
74,112 KB
testcase_34 AC 320 ms
73,744 KB
testcase_35 AC 340 ms
74,108 KB
testcase_36 AC 334 ms
74,128 KB
testcase_37 AC 329 ms
73,920 KB
testcase_38 AC 339 ms
74,148 KB
testcase_39 AC 336 ms
74,100 KB
testcase_40 AC 333 ms
74,048 KB
testcase_41 AC 346 ms
73,892 KB
testcase_42 AC 337 ms
73,860 KB
testcase_43 AC 342 ms
74,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    long[] use = new long[26];
    for(int i = 0; i < 26; i++) {
      use[i] = -1;
    }
    long[] dis = new long[s.length()];
    for(int i = 0; i < s.length(); i++) {
      int t = s.charAt(i) - 97;
      dis[i] = i - use[t];
      use[t] = i;
    }
    long[] dp = new long[s.length()];
    dp[0] = 1;
    for(int i = 1; i < s.length(); i++) {
      dp[i] = dp[i - 1] + dis[i];
    }
    long sa = s.length();
    long a = (sa * (sa - 1)) / 2 + sa;
    long sum = 0;
    for(int i = 0; i < s.length(); i++) {
      sum += dp[i];
    }
    double ans = (double)sum / (double)a;
    System.out.println(ans);
  }
}
0