結果

問題 No.2419 MMA文字列2
ユーザー ああいいああいい
提出日時 2023-08-12 18:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-11-20 09:21:50
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,944 KB
testcase_01 AC 41 ms
54,104 KB
testcase_02 AC 42 ms
54,044 KB
testcase_03 AC 43 ms
60,076 KB
testcase_04 AC 42 ms
55,232 KB
testcase_05 AC 40 ms
53,948 KB
testcase_06 AC 39 ms
54,704 KB
testcase_07 AC 39 ms
54,516 KB
testcase_08 AC 38 ms
54,776 KB
testcase_09 AC 41 ms
54,872 KB
testcase_10 AC 38 ms
55,744 KB
testcase_11 AC 39 ms
55,228 KB
testcase_12 AC 92 ms
72,004 KB
testcase_13 AC 52 ms
63,324 KB
testcase_14 AC 112 ms
76,236 KB
testcase_15 AC 84 ms
70,864 KB
testcase_16 AC 111 ms
76,240 KB
testcase_17 AC 64 ms
68,192 KB
testcase_18 AC 117 ms
76,056 KB
testcase_19 AC 113 ms
76,084 KB
testcase_20 AC 68 ms
66,768 KB
testcase_21 AC 60 ms
65,888 KB
testcase_22 AC 82 ms
76,744 KB
testcase_23 AC 80 ms
76,660 KB
testcase_24 AC 74 ms
76,692 KB
testcase_25 AC 74 ms
76,404 KB
testcase_26 AC 44 ms
62,380 KB
testcase_27 AC 52 ms
70,384 KB
testcase_28 AC 192 ms
76,400 KB
testcase_29 AC 188 ms
76,704 KB
testcase_30 AC 188 ms
76,436 KB
testcase_31 AC 182 ms
76,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
from collections import defaultdict

d = defaultdict(int)
ans = 0
for s in S:
	for u in d:
		if u == s:continue
		v = d[u]
		ans += v * (v - 1) // 2
	d[s] += 1
print(ans)
0