結果

問題 No.1994 Confusing Name
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-01 21:46:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 158,492 KB
最終ジャッジ日時 2024-11-26 04:35:46
合計ジャッジ時間 9,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
from collections import defaultdict
s = []
d = defaultdict(int)
for i in range(n):
    s.append(list(input()))
    
    for j in range(len(s[i])):
        s_ = s[i][::]
        s_[j] = "-"
        d["".join(s_)] += 1
ans = []
for e in s:
    res = 0
    for j in range(len(e)):
        s_ = e[::]
        s_[j] = "-"
#         print("".join(s_))
        res += d["".join(s_)] -1
#         print(res)
    ans.append(res)
for e in ans:
    print(e)
0