結果

問題 No.2419 MMA文字列2
ユーザー Basin-BugBasin-Bug
提出日時 2023-08-12 14:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,248 KB
最終ジャッジ日時 2024-11-19 21:59:30
合計ジャッジ時間 2,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,248 KB
testcase_01 AC 49 ms
53,120 KB
testcase_02 AC 42 ms
53,716 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 43 ms
53,248 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 43 ms
53,248 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 43 ms
53,120 KB
testcase_11 AC 42 ms
53,248 KB
testcase_12 AC 54 ms
66,688 KB
testcase_13 AC 50 ms
61,184 KB
testcase_14 AC 58 ms
72,320 KB
testcase_15 AC 55 ms
67,840 KB
testcase_16 AC 58 ms
73,472 KB
testcase_17 AC 52 ms
64,000 KB
testcase_18 AC 60 ms
73,216 KB
testcase_19 AC 59 ms
74,112 KB
testcase_20 AC 53 ms
64,640 KB
testcase_21 AC 51 ms
63,104 KB
testcase_22 AC 76 ms
84,736 KB
testcase_23 AC 77 ms
84,864 KB
testcase_24 AC 79 ms
87,808 KB
testcase_25 AC 80 ms
87,808 KB
testcase_26 AC 52 ms
63,872 KB
testcase_27 AC 78 ms
89,248 KB
testcase_28 AC 71 ms
76,724 KB
testcase_29 AC 73 ms
77,056 KB
testcase_30 AC 73 ms
76,884 KB
testcase_31 AC 71 ms
76,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
S  = str(input())
dis = defaultdict(list)
for i in range(len(S)):
  dis[S[i]].append(i + 1)

ans = 0
for i in dis.keys():
  if len(dis[i]) >= 2:
    for j in range(1, len(dis[i])):
      ans += (len(S) - dis[i][j] - (len(dis[i]) - j - 1)) * j

print(ans)
0