結果
| 問題 | No.2419 MMA文字列2 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2023-08-12 16:43:06 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 523 ms / 2,000 ms |
| コード長 | 259 bytes |
| 記録 | |
| コンパイル時間 | 399 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 83,328 KB |
| 最終ジャッジ日時 | 2026-05-14 06:50:12 |
| 合計ジャッジ時間 | 7,018 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 30 |
ソースコード
from collections import Counter
from string import ascii_uppercase
from math import comb
S = input()
freq = Counter()
ans = 0
for c in S:
for a in ascii_uppercase:
if a == c: continue
ans += comb(freq[a], 2)
freq[c] += 1
print(ans)
norioc