結果

問題 No.852 連続部分文字列
ユーザー jensenjensen
提出日時 2021-01-21 19:24:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,481 ms / 3,153 ms
コード長 403 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,000 KB
最終ジャッジ日時 2024-06-07 01:51:52
合計ジャッジ時間 32,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 32 ms
10,496 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 32 ms
10,624 KB
testcase_13 AC 72 ms
10,624 KB
testcase_14 AC 48 ms
10,368 KB
testcase_15 AC 96 ms
10,624 KB
testcase_16 AC 72 ms
10,496 KB
testcase_17 AC 86 ms
10,624 KB
testcase_18 AC 101 ms
10,752 KB
testcase_19 AC 35 ms
10,496 KB
testcase_20 AC 62 ms
10,496 KB
testcase_21 AC 102 ms
10,624 KB
testcase_22 AC 54 ms
10,496 KB
testcase_23 AC 79 ms
10,752 KB
testcase_24 AC 57 ms
10,624 KB
testcase_25 AC 77 ms
10,624 KB
testcase_26 AC 101 ms
10,624 KB
testcase_27 AC 71 ms
10,624 KB
testcase_28 AC 85 ms
10,624 KB
testcase_29 AC 104 ms
10,752 KB
testcase_30 AC 44 ms
10,496 KB
testcase_31 AC 108 ms
10,752 KB
testcase_32 AC 109 ms
10,752 KB
testcase_33 AC 2,454 ms
18,056 KB
testcase_34 AC 2,407 ms
18,072 KB
testcase_35 AC 2,413 ms
17,912 KB
testcase_36 AC 2,416 ms
17,792 KB
testcase_37 AC 2,481 ms
17,956 KB
testcase_38 AC 2,393 ms
18,064 KB
testcase_39 AC 2,404 ms
17,812 KB
testcase_40 AC 2,415 ms
18,136 KB
testcase_41 AC 2,440 ms
17,796 KB
testcase_42 AC 2,417 ms
15,492 KB
testcase_43 AC 2,435 ms
28,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
s_lng=len(s)
af=[chr(i) for i in range(97, 97+26)]
cnt=0
for moji in af:
    idx=[i for i,x in enumerate(s) if x==moji]
    if(len(idx)>1):
        m=sum(idx[1:len(idx)-1])
        n=0
        for i in range(len(idx)-1):
            n+=idx[i]*idx[i+1]
        cnt+=(s_lng*idx[0]+(s_lng-1)*m-idx[len(idx)-1]-n+(len(idx)-1)*s_lng)
u=s_lng*(s_lng+1)*(s_lng+2)/6-cnt
l=s_lng*(s_lng+1)/2
print(u/l)
0