結果
問題 | No.852 連続部分文字列 |
ユーザー | kuuso1 |
提出日時 | 2019-07-26 23:23:00 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,824 bytes |
コンパイル時間 | 887 ms |
コンパイル使用メモリ | 113,844 KB |
実行使用メモリ | 35,308 KB |
最終ジャッジ日時 | 2024-07-02 09:46:45 |
合計ジャッジ時間 | 9,037 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
24,656 KB |
testcase_01 | AC | 28 ms
24,680 KB |
testcase_02 | AC | 29 ms
24,816 KB |
testcase_03 | AC | 27 ms
24,552 KB |
testcase_04 | AC | 26 ms
24,532 KB |
testcase_05 | AC | 27 ms
24,684 KB |
testcase_06 | AC | 26 ms
24,528 KB |
testcase_07 | AC | 25 ms
24,424 KB |
testcase_08 | AC | 26 ms
24,524 KB |
testcase_09 | AC | 25 ms
24,788 KB |
testcase_10 | AC | 26 ms
25,040 KB |
testcase_11 | AC | 26 ms
25,004 KB |
testcase_12 | AC | 26 ms
25,172 KB |
testcase_13 | AC | 105 ms
25,044 KB |
testcase_14 | AC | 60 ms
24,916 KB |
testcase_15 | AC | 157 ms
24,528 KB |
testcase_16 | AC | 103 ms
24,652 KB |
testcase_17 | AC | 138 ms
24,660 KB |
testcase_18 | AC | 172 ms
25,044 KB |
testcase_19 | AC | 37 ms
25,012 KB |
testcase_20 | AC | 93 ms
22,588 KB |
testcase_21 | AC | 175 ms
26,848 KB |
testcase_22 | AC | 72 ms
24,752 KB |
testcase_23 | AC | 126 ms
26,548 KB |
testcase_24 | AC | 81 ms
24,476 KB |
testcase_25 | AC | 121 ms
26,564 KB |
testcase_26 | AC | 182 ms
22,804 KB |
testcase_27 | AC | 114 ms
26,808 KB |
testcase_28 | AC | 139 ms
24,780 KB |
testcase_29 | AC | 176 ms
24,528 KB |
testcase_30 | AC | 54 ms
24,784 KB |
testcase_31 | AC | 177 ms
26,704 KB |
testcase_32 | AC | 185 ms
24,924 KB |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ N = S.Length; int[] ll = new int[27]; var dl = new Dictionary<char, int>[27]; for(int i=0;i<27;i++) dl[i] = new Dictionary<char,int>(); long cnt = 0; for(int i=0;i<N;i++){ for(int len=0;len<=26;len++){ if(ll[len] < i) ll[len] = i; while(ll[len] < N){ if(dl[len].ContainsKey(S[ll[len]])){ dl[len][S[ll[len]]]++; ll[len]++; continue; } if(dl[len].Count < len){ dl[len].Add(S[ll[len]], 1); ll[len]++; continue; } break; } } for(int len = 1; len <= 26; len++){ if(dl[len].Count == len){ cnt += (long)len * (long)(ll[len] - ll[len - 1]); } } for(int len = 0; len <= 26; len++){ if(dl[len].ContainsKey(S[i])){ dl[len][S[i]]--; if(dl[len][S[i]] == 0) dl[len].Remove(S[i]); } } } double tot = (double) N * (double) (N + 1) / 2.0; Console.WriteLine((double)cnt / tot); } int N; String S; public Sol(){ S = rs(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }