#include using namespace std; #ifdef _RUTHEN #include "debug.hpp" #else #define show(...) true #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); i++) template using V = vector; int main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; V S(N); rep(i, N) cin >> S[i]; set st[11]; rep(i, N) st[S[i].size()].insert(S[i]); rep(i, N) { int res = 0; rep(j, S[i].size()) { for (char c = 'a'; c <= 'z'; c++) { if (c != S[i][j]) { string k = S[i].substr(0, j) + c + S[i].substr(j + 1); res += st[S[i].size()].count(k); } } } cout << res << '\n'; } return 0; }