結果
問題 | No.852 連続部分文字列 |
ユーザー | tenten |
提出日時 | 2023-07-07 17:43:31 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 801 ms / 3,153 ms |
コード長 | 2,179 bytes |
コンパイル時間 | 2,904 ms |
コンパイル使用メモリ | 85,712 KB |
実行使用メモリ | 119,456 KB |
最終ジャッジ日時 | 2024-07-21 13:08:32 |
合計ジャッジ時間 | 16,732 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,832 KB |
testcase_01 | AC | 57 ms
50,872 KB |
testcase_02 | AC | 56 ms
50,708 KB |
testcase_03 | AC | 58 ms
50,940 KB |
testcase_04 | AC | 56 ms
50,692 KB |
testcase_05 | AC | 58 ms
50,504 KB |
testcase_06 | AC | 57 ms
50,780 KB |
testcase_07 | AC | 57 ms
50,768 KB |
testcase_08 | AC | 58 ms
50,448 KB |
testcase_09 | AC | 57 ms
50,704 KB |
testcase_10 | AC | 58 ms
50,480 KB |
testcase_11 | AC | 58 ms
50,784 KB |
testcase_12 | AC | 56 ms
50,668 KB |
testcase_13 | AC | 117 ms
52,804 KB |
testcase_14 | AC | 102 ms
52,716 KB |
testcase_15 | AC | 129 ms
52,968 KB |
testcase_16 | AC | 118 ms
52,848 KB |
testcase_17 | AC | 125 ms
53,032 KB |
testcase_18 | AC | 134 ms
55,000 KB |
testcase_19 | AC | 69 ms
52,236 KB |
testcase_20 | AC | 102 ms
52,932 KB |
testcase_21 | AC | 134 ms
55,092 KB |
testcase_22 | AC | 107 ms
53,004 KB |
testcase_23 | AC | 122 ms
52,788 KB |
testcase_24 | AC | 111 ms
52,800 KB |
testcase_25 | AC | 114 ms
52,948 KB |
testcase_26 | AC | 123 ms
53,020 KB |
testcase_27 | AC | 121 ms
52,800 KB |
testcase_28 | AC | 120 ms
52,712 KB |
testcase_29 | AC | 134 ms
54,800 KB |
testcase_30 | AC | 102 ms
52,708 KB |
testcase_31 | AC | 134 ms
55,228 KB |
testcase_32 | AC | 141 ms
55,420 KB |
testcase_33 | AC | 786 ms
119,156 KB |
testcase_34 | AC | 787 ms
119,292 KB |
testcase_35 | AC | 785 ms
119,456 KB |
testcase_36 | AC | 775 ms
119,172 KB |
testcase_37 | AC | 776 ms
119,380 KB |
testcase_38 | AC | 800 ms
119,156 KB |
testcase_39 | AC | 794 ms
119,244 KB |
testcase_40 | AC | 801 ms
119,200 KB |
testcase_41 | AC | 769 ms
119,040 KB |
testcase_42 | AC | 745 ms
119,184 KB |
testcase_43 | AC | 764 ms
119,392 KB |
ソースコード
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(); ArrayList<TreeSet<Integer>> places = new ArrayList<>(); for (int i = 0; i < 26; i++) { places.add(new TreeSet<>()); places.get(i).add(inputs.length + 1); } for (int i = 0; i < inputs.length; i++) { places.get(inputs[i] - 'a').add(i + 1); } double all = (double)inputs.length * (inputs.length + 1) / 2; double total = all * 26; for (TreeSet<Integer> org : places) { int prev = 0; for (int x : org) { total -= (x - prev) * (x - prev - 1.0) / 2; prev = x; } } System.out.println(new java.math.BigDecimal(total / all).toPlainString()); } } 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(); } }