結果

問題 No.1994 Confusing Name
ユーザー mmn15277198mmn15277198
提出日時 2022-07-31 13:33:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,657 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 181,776 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-07-20 22:40:07
合計ジャッジ時間 23,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 1,417 ms
8,960 KB
testcase_13 AC 1,657 ms
8,832 KB
testcase_14 AC 1,534 ms
8,576 KB
testcase_15 AC 1,199 ms
7,680 KB
testcase_16 AC 1,074 ms
7,296 KB
testcase_17 AC 1,211 ms
7,680 KB
testcase_18 AC 1,595 ms
8,704 KB
testcase_19 AC 1,632 ms
8,704 KB
testcase_20 AC 1,617 ms
8,832 KB
testcase_21 AC 271 ms
5,376 KB
testcase_22 AC 119 ms
5,376 KB
testcase_23 AC 1,435 ms
8,576 KB
testcase_24 AC 1,450 ms
8,704 KB
testcase_25 AC 825 ms
6,656 KB
testcase_26 AC 375 ms
5,376 KB
testcase_27 AC 1,315 ms
8,320 KB
testcase_28 AC 903 ms
6,912 KB
testcase_29 AC 90 ms
5,376 KB
testcase_30 AC 1,072 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int n;
  cin >> n;
  vector<string> s(n);
  for (int i = 0; i < n; i++) {
    cin >> s[i];
  }
  set<string> st;
  map<int, int> mp;
  for (int i = 0; i < n; i++) {
    st.insert(s[i]);
    mp[(int)s[i].size()]++;
  }
  vector<int> ans(n, 0);
  for (int i = 0; i < n; i++) {
    if (mp[s[i].size()] <= 1) continue;
    for (int j = 0; j < s[i].size(); j++) {
      for (char c = 'a'; c <= 'z'; c++) {
        if (s[i][j] == c) continue;
        string t = s[i];
        t[j] = c;
        ans[i] += st.count(t);
      }
    }
  }
  for (int i = 0; i < n; i++) {
    cout << ans[i] << endl;
  }
  return 0;
}
0