結果

問題 No.2419 MMA文字列2
ユーザー NakLon131NakLon131
提出日時 2023-08-13 15:44:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 126,220 KB
最終ジャッジ日時 2024-11-21 11:35:11
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,196 KB
testcase_01 AC 40 ms
53,288 KB
testcase_02 AC 40 ms
53,208 KB
testcase_03 AC 46 ms
61,260 KB
testcase_04 AC 47 ms
60,588 KB
testcase_05 AC 40 ms
52,428 KB
testcase_06 AC 40 ms
52,220 KB
testcase_07 AC 39 ms
53,160 KB
testcase_08 AC 40 ms
53,664 KB
testcase_09 AC 39 ms
52,244 KB
testcase_10 AC 39 ms
53,676 KB
testcase_11 AC 46 ms
61,272 KB
testcase_12 AC 85 ms
75,380 KB
testcase_13 AC 53 ms
63,084 KB
testcase_14 AC 119 ms
87,544 KB
testcase_15 AC 91 ms
78,236 KB
testcase_16 AC 124 ms
88,552 KB
testcase_17 AC 71 ms
69,628 KB
testcase_18 AC 126 ms
90,420 KB
testcase_19 AC 128 ms
91,212 KB
testcase_20 AC 74 ms
69,936 KB
testcase_21 AC 66 ms
68,140 KB
testcase_22 AC 216 ms
126,040 KB
testcase_23 AC 225 ms
126,068 KB
testcase_24 AC 226 ms
126,220 KB
testcase_25 AC 216 ms
125,872 KB
testcase_26 AC 68 ms
68,936 KB
testcase_27 AC 214 ms
126,024 KB
testcase_28 AC 218 ms
125,932 KB
testcase_29 AC 224 ms
126,060 KB
testcase_30 AC 218 ms
125,952 KB
testcase_31 AC 219 ms
125,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
len_s = len(s)

# DP
# dp[アルファベット文字][i個目まで] = 出現個数
dp = [[0 for j in range(len_s + 1)] for i in range(26)]

ans = 0
# 1文字ずつ見る
for i in range(len_s):
	# 今の文字を取得
	pos = ord(s[i]) - ord('A')
	dp[pos][i+1] += 1
	# A~Zをチェック
	for j in range(26):
		# 累積和をとるためコピー
		if i > 0: dp[j][i+1] += dp[j][i]
		# 作れる総数を更新(同じ文字でないこと)
		if pos != j: ans += ((dp[j][i+1]) * (dp[j][i+1]-1) // 2)
print(ans)
0