結果
問題 | No.2419 MMA文字列2 |
ユーザー | Seed57_cash |
提出日時 | 2023-06-22 09:55:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 745 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,440 KB |
最終ジャッジ日時 | 2024-06-29 17:39:31 |
合計ジャッジ時間 | 2,823 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
51,584 KB |
testcase_01 | AC | 36 ms
52,352 KB |
testcase_02 | AC | 35 ms
51,456 KB |
testcase_03 | AC | 38 ms
51,712 KB |
testcase_04 | AC | 33 ms
52,224 KB |
testcase_05 | AC | 34 ms
51,584 KB |
testcase_06 | AC | 32 ms
51,840 KB |
testcase_07 | AC | 32 ms
51,584 KB |
testcase_08 | AC | 32 ms
51,584 KB |
testcase_09 | AC | 31 ms
51,584 KB |
testcase_10 | AC | 31 ms
52,096 KB |
testcase_11 | AC | 32 ms
51,456 KB |
testcase_12 | AC | 44 ms
65,792 KB |
testcase_13 | AC | 39 ms
60,416 KB |
testcase_14 | AC | 47 ms
71,040 KB |
testcase_15 | AC | 45 ms
66,304 KB |
testcase_16 | AC | 48 ms
71,552 KB |
testcase_17 | AC | 42 ms
63,360 KB |
testcase_18 | AC | 46 ms
72,704 KB |
testcase_19 | AC | 48 ms
72,448 KB |
testcase_20 | AC | 40 ms
63,488 KB |
testcase_21 | AC | 39 ms
61,952 KB |
testcase_22 | AC | 57 ms
77,440 KB |
testcase_23 | AC | 60 ms
77,184 KB |
testcase_24 | AC | 58 ms
77,428 KB |
testcase_25 | AC | 57 ms
77,400 KB |
testcase_26 | AC | 41 ms
62,848 KB |
testcase_27 | AC | 61 ms
77,312 KB |
testcase_28 | AC | 60 ms
77,184 KB |
testcase_29 | AC | 58 ms
77,312 KB |
testcase_30 | AC | 60 ms
77,184 KB |
testcase_31 | AC | 61 ms
76,988 KB |
ソースコード
# 2文字目を固定すると、(自分より前の同じ文字の個数)*(自分より後ろの自分以外の文字の数) # というわけで、現時点の自分と同じ文字のカウントがあれば良さそう S = input() n = len(S) alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" # assert len(alphabet) == len(set(list(alphabet))) == 26 ci_map = dict() for i, c in enumerate(alphabet): ci_map[c] = i # 自分より前の同じ文字の個数 counter = [0] * 26 same_before = [0] * n for i, c in enumerate(S): j = ci_map[c] same_before[i] = counter[j] counter[j] += 1 res = 0 for i in range(n): before = same_before[i] c = S[i] j = ci_map[c] after = n - 1 - i - (counter[j] - before - 1) res += before * after print(res)