結果

問題 No.1994 Confusing Name
ユーザー mmn15277198mmn15277198
提出日時 2022-07-31 13:53:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 176,520 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-07-20 22:40:53
合計ジャッジ時間 11,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 435 ms
20,480 KB
testcase_13 AC 590 ms
28,672 KB
testcase_14 AC 579 ms
29,696 KB
testcase_15 AC 460 ms
25,344 KB
testcase_16 AC 397 ms
22,528 KB
testcase_17 AC 484 ms
24,832 KB
testcase_18 AC 654 ms
30,080 KB
testcase_19 AC 687 ms
30,208 KB
testcase_20 AC 688 ms
30,336 KB
testcase_21 AC 89 ms
8,320 KB
testcase_22 AC 37 ms
5,972 KB
testcase_23 AC 552 ms
25,216 KB
testcase_24 AC 539 ms
24,192 KB
testcase_25 AC 305 ms
17,024 KB
testcase_26 AC 134 ms
10,112 KB
testcase_27 AC 464 ms
22,656 KB
testcase_28 AC 326 ms
18,048 KB
testcase_29 AC 29 ms
5,632 KB
testcase_30 AC 372 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int n;
  cin >> n;
  vector<string> s(n);
  map<string, int> mp;
  for (int i = 0; i < n; i++) {
    cin >> s[i];
    for (int j = 0; j < s[i].size(); j++) {
      string t = s[i];
      t[j] = '?';
      mp[t]++;
    }
  }
  for (int i = 0; i < n; i++) {
    int ans = 0;
    for (int j = 0; j < s[i].size(); j++) {
      string t = s[i];
      t[j] = '?';
      ans += max(0, mp[t] - 1);
    }
    cout << ans << endl;
  }
  return 0;
}
0