結果

問題 No.852 連続部分文字列
ユーザー tempura_pptempura_pp
提出日時 2019-07-26 21:20:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 559 ms / 3,153 ms
コード長 185 bytes
コンパイル時間 1,259 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-02 06:33:49
合計ジャッジ時間 7,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,328 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 31 ms
51,712 KB
testcase_05 AC 34 ms
57,344 KB
testcase_06 AC 38 ms
57,600 KB
testcase_07 AC 35 ms
57,856 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 35 ms
57,600 KB
testcase_11 AC 33 ms
52,096 KB
testcase_12 AC 45 ms
57,472 KB
testcase_13 AC 52 ms
74,884 KB
testcase_14 AC 43 ms
70,912 KB
testcase_15 AC 59 ms
75,008 KB
testcase_16 AC 52 ms
74,624 KB
testcase_17 AC 55 ms
75,264 KB
testcase_18 AC 51 ms
75,008 KB
testcase_19 AC 38 ms
61,696 KB
testcase_20 AC 48 ms
74,880 KB
testcase_21 AC 53 ms
75,008 KB
testcase_22 AC 51 ms
75,008 KB
testcase_23 AC 51 ms
75,008 KB
testcase_24 AC 47 ms
74,880 KB
testcase_25 AC 49 ms
75,012 KB
testcase_26 AC 52 ms
75,168 KB
testcase_27 AC 49 ms
74,624 KB
testcase_28 AC 53 ms
74,880 KB
testcase_29 AC 55 ms
74,624 KB
testcase_30 AC 42 ms
67,840 KB
testcase_31 AC 57 ms
75,008 KB
testcase_32 AC 63 ms
74,752 KB
testcase_33 AC 334 ms
76,692 KB
testcase_34 AC 324 ms
76,684 KB
testcase_35 AC 320 ms
76,800 KB
testcase_36 AC 333 ms
76,672 KB
testcase_37 AC 349 ms
76,800 KB
testcase_38 AC 345 ms
76,544 KB
testcase_39 AC 543 ms
76,672 KB
testcase_40 AC 354 ms
76,288 KB
testcase_41 AC 348 ms
76,288 KB
testcase_42 AC 559 ms
76,800 KB
testcase_43 AC 347 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
sum=13*N*(N+1)
for c in range(ord('a'),ord('z')+1):
    cnt=0
    for i in S:
        if i==chr(c) : cnt=0
        else : cnt+=1
        sum-=cnt
print(2*sum/N/(N+1))
0