結果

問題 No.2419 MMA文字列2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-23 06:40:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 76,140 KB
最終ジャッジ日時 2024-06-01 04:24:43
合計ジャッジ時間 3,995 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,408 KB
testcase_01 AC 39 ms
53,488 KB
testcase_02 AC 39 ms
53,536 KB
testcase_03 AC 45 ms
60,816 KB
testcase_04 AC 44 ms
58,824 KB
testcase_05 AC 39 ms
51,872 KB
testcase_06 AC 40 ms
53,324 KB
testcase_07 AC 40 ms
52,568 KB
testcase_08 AC 39 ms
53,132 KB
testcase_09 AC 39 ms
52,064 KB
testcase_10 AC 39 ms
52,652 KB
testcase_11 AC 44 ms
59,280 KB
testcase_12 AC 63 ms
65,184 KB
testcase_13 AC 48 ms
61,016 KB
testcase_14 AC 78 ms
69,720 KB
testcase_15 AC 64 ms
65,748 KB
testcase_16 AC 79 ms
70,656 KB
testcase_17 AC 56 ms
63,608 KB
testcase_18 AC 80 ms
72,316 KB
testcase_19 AC 82 ms
71,052 KB
testcase_20 AC 57 ms
64,104 KB
testcase_21 AC 53 ms
62,120 KB
testcase_22 AC 117 ms
76,012 KB
testcase_23 AC 128 ms
75,924 KB
testcase_24 AC 128 ms
76,084 KB
testcase_25 AC 118 ms
75,964 KB
testcase_26 AC 52 ms
61,436 KB
testcase_27 AC 108 ms
69,864 KB
testcase_28 AC 121 ms
76,140 KB
testcase_29 AC 132 ms
75,816 KB
testcase_30 AC 120 ms
76,084 KB
testcase_31 AC 121 ms
75,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
d = [0] * 26
ans = 0

for c in S:
	
	ci = ord(c)-ord('A')
	
	for i in range(26):
		if ci == i:
			continue
		ans += d[i]*(d[i]-1)//2
	
	d[ci] += 1
	
print (ans)
0