結果

問題 No.852 連続部分文字列
ユーザー NoneNone
提出日時 2021-03-03 17:01:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 3,153 ms
コード長 1,086 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 116,192 KB
最終ジャッジ日時 2024-10-03 06:10:38
合計ジャッジ時間 6,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 46 ms
54,144 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 44 ms
53,632 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 44 ms
53,760 KB
testcase_10 AC 44 ms
53,760 KB
testcase_11 AC 43 ms
53,504 KB
testcase_12 AC 46 ms
54,272 KB
testcase_13 AC 60 ms
65,068 KB
testcase_14 AC 53 ms
63,360 KB
testcase_15 AC 54 ms
66,816 KB
testcase_16 AC 53 ms
64,768 KB
testcase_17 AC 53 ms
66,048 KB
testcase_18 AC 55 ms
67,224 KB
testcase_19 AC 52 ms
62,208 KB
testcase_20 AC 54 ms
64,384 KB
testcase_21 AC 55 ms
67,072 KB
testcase_22 AC 52 ms
63,360 KB
testcase_23 AC 52 ms
65,280 KB
testcase_24 AC 51 ms
64,000 KB
testcase_25 AC 54 ms
65,408 KB
testcase_26 AC 54 ms
67,456 KB
testcase_27 AC 53 ms
64,896 KB
testcase_28 AC 54 ms
65,664 KB
testcase_29 AC 55 ms
67,584 KB
testcase_30 AC 54 ms
63,232 KB
testcase_31 AC 54 ms
67,072 KB
testcase_32 AC 55 ms
67,712 KB
testcase_33 AC 151 ms
116,060 KB
testcase_34 AC 153 ms
115,752 KB
testcase_35 AC 154 ms
116,032 KB
testcase_36 AC 151 ms
115,876 KB
testcase_37 AC 152 ms
116,108 KB
testcase_38 AC 156 ms
116,192 KB
testcase_39 AC 153 ms
116,084 KB
testcase_40 AC 149 ms
115,936 KB
testcase_41 AC 153 ms
116,192 KB
testcase_42 AC 151 ms
115,692 KB
testcase_43 AC 150 ms
116,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def SameRange(A):
    N=len(A)
    pre_same=[-1]*N
    next_same=[N]*N
    last_pos = defaultdict(lambda: -1)
    for i, a in enumerate(A):
        j = last_pos[a]
        if j==-1:
            last_pos[a] = i
        else:
            next_same[j] = i
            pre_same[i] = j
            last_pos[a] = i
    return pre_same, next_same

def count_pair(i,l,r):
    """
    部分列 [l,r] の中で、i を含む部分列の個数
    """
    return (i-l+1)*(r-i+1)


#######################################################################################
def example():
    global input
    example = iter(
        """
7
1 1 3 3 3 2 2
        """
            .strip().split("\n"))
    input = lambda: next(example)

#######################################################################################
import sys
input = sys.stdin.readline
from collections import defaultdict

# example()

A=[]
for s in input().rstrip():
    A.append(ord(s)-ord("a"))
N=len(A)
cnt=0
L,R = SameRange(A)
for i in range(N):
    l,r=L[i],R[i]
    cnt+=count_pair(i,l+1,N-1)

T=N*(N+1)//2
print(cnt/T)
0