結果

問題 No.2419 MMA文字列2
ユーザー maru65536maru65536
提出日時 2023-08-12 14:02:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 72,528 KB
最終ジャッジ日時 2024-11-19 17:06:44
合計ジャッジ時間 8,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 140 ms
24,064 KB
testcase_13 AC 46 ms
12,544 KB
testcase_14 AC 249 ms
36,864 KB
testcase_15 AC 160 ms
26,752 KB
testcase_16 AC 265 ms
38,272 KB
testcase_17 AC 95 ms
18,816 KB
testcase_18 AC 277 ms
39,552 KB
testcase_19 AC 282 ms
40,192 KB
testcase_20 AC 104 ms
19,584 KB
testcase_21 AC 81 ms
16,768 KB
testcase_22 AC 570 ms
72,528 KB
testcase_23 AC 564 ms
72,404 KB
testcase_24 AC 574 ms
72,400 KB
testcase_25 AC 565 ms
72,404 KB
testcase_26 AC 82 ms
17,920 KB
testcase_27 AC 548 ms
72,272 KB
testcase_28 AC 563 ms
72,148 KB
testcase_29 AC 576 ms
72,144 KB
testcase_30 AC 575 ms
72,148 KB
testcase_31 AC 566 ms
72,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
n=len(s)
cum=[[0]*26]
for i,c in enumerate(s):
    tmp=cum[-1][:]
    tmp[ord(c)-ord('A')]+=1
    cum.append(tmp)
ans=0
for i,c in enumerate(s):
    ima_c=cum[i][ord(c)-ord('A')]
    zenbu_c=cum[-1][ord(c) - ord('A')]
    ans+=ima_c*(n-i-zenbu_c+ima_c)
print(ans)
0