結果

問題 No.2419 MMA文字列2
ユーザー FromBooskaFromBooska
提出日時 2023-08-18 21:29:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-05-06 03:20:00
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
51,456 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 42 ms
51,328 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 35 ms
51,584 KB
testcase_12 AC 45 ms
61,184 KB
testcase_13 AC 47 ms
58,752 KB
testcase_14 AC 49 ms
64,768 KB
testcase_15 AC 46 ms
61,696 KB
testcase_16 AC 49 ms
64,512 KB
testcase_17 AC 43 ms
60,160 KB
testcase_18 AC 50 ms
64,512 KB
testcase_19 AC 52 ms
65,024 KB
testcase_20 AC 43 ms
60,160 KB
testcase_21 AC 45 ms
59,648 KB
testcase_22 AC 62 ms
71,680 KB
testcase_23 AC 59 ms
71,808 KB
testcase_24 AC 63 ms
72,320 KB
testcase_25 AC 63 ms
71,936 KB
testcase_26 AC 43 ms
58,368 KB
testcase_27 AC 51 ms
59,264 KB
testcase_28 AC 61 ms
71,680 KB
testcase_29 AC 63 ms
72,064 KB
testcase_30 AC 60 ms
72,064 KB
testcase_31 AC 60 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# alphabet countsリストを作るか
# そのときのアルファベットのコンボ数を引いた数をansに加算

alphabets = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
dic = {}
for i in range(26):
    dic[alphabets[i]] = i
    
alphabet_counts = [0]*26
combo_sum = 0

S = input()
N = len(S)

ans = 0
for i in range(N):
    s = S[i]
    old = alphabet_counts[dic[s]]
    alphabet_counts[dic[s]] += 1
    combo_sum -= (old-1)*(old)//2
    ans += combo_sum
    combo_sum += (old)*(old+1)//2
    #print('i', i, 'alphabet_counts', alphabet_counts)
    #print('combo_sum', combo_sum, 'ans', ans)
    
print(ans)
0