結果

問題 No.2419 MMA文字列2
ユーザー shobonvipshobonvip
提出日時 2023-08-12 13:43:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-11-19 16:00:58
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 46 ms
58,496 KB
testcase_02 AC 44 ms
58,496 KB
testcase_03 AC 47 ms
59,904 KB
testcase_04 AC 45 ms
59,648 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 44 ms
58,880 KB
testcase_11 AC 46 ms
59,776 KB
testcase_12 AC 99 ms
76,568 KB
testcase_13 AC 68 ms
75,924 KB
testcase_14 AC 133 ms
76,928 KB
testcase_15 AC 106 ms
76,544 KB
testcase_16 AC 137 ms
76,668 KB
testcase_17 AC 86 ms
76,404 KB
testcase_18 AC 139 ms
76,800 KB
testcase_19 AC 141 ms
76,800 KB
testcase_20 AC 85 ms
76,416 KB
testcase_21 AC 79 ms
76,416 KB
testcase_22 AC 225 ms
78,336 KB
testcase_23 AC 223 ms
78,336 KB
testcase_24 AC 223 ms
78,236 KB
testcase_25 AC 225 ms
78,208 KB
testcase_26 AC 79 ms
76,032 KB
testcase_27 AC 222 ms
78,208 KB
testcase_28 AC 224 ms
78,080 KB
testcase_29 AC 225 ms
78,144 KB
testcase_30 AC 224 ms
78,168 KB
testcase_31 AC 227 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()[::-1]
n = len(s)
a = [ord(s[i]) - ord("A") for i in range(n)]
dp = [[0] * 26 for i in range(2)]
ans = 0
for i in range(n):
	ndp = [[0] * 26 for i in range(2)]
	for j in range(2):
		for k in range(26):
			ndp[j][k] = dp[j][k]
	ndp[0][a[i]] += 1
	for j in range(26):
		if j == a[i]: continue
		ndp[1][a[i]] += dp[0][j]
	ans += dp[1][a[i]]
	dp[0] = ndp[0][::]
	dp[1] = ndp[1][::]

print(ans)
0