結果

問題 No.1994 Confusing Name
ユーザー polyester
提出日時 2022-07-01 23:35:15
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 3,030 ms
コンパイル使用メモリ 143,912 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-11-26 07:34:42
合計ジャッジ時間 12,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
using ll = long long;
int main() {
  int n;
  cin >> n;
  vector<string> vs(n);
  map<string, int> mp;
  for(int i = 0; i < n; i++) {
    cin >> vs[i];
  }
  vector<int> ans(n, 0);
  for(int i = 0; i < n; i++) {
    for(int j = 0; j < vs[i].size(); j++) {
      string tmp = vs[i];
      tmp[j] = '.';
      mp[tmp]++;
    }
  }
  for(int i = 0; i < n; i++) {
    for(int j = 0; j < vs[i].size(); j++) {
      string tmp = vs[i];
      tmp[j] = '.';
      ans[i] += mp[tmp] - 1;
    }
  }
  for(int i = 0; i < n; i++) {
    cout << ans[i] << endl;
  }
  return 0;
}
0