結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 1,372 ms
8,832 KB
testcase_13 AC 1,639 ms
8,960 KB
testcase_14 AC 1,534 ms
8,576 KB
testcase_15 AC 1,209 ms
7,680 KB
testcase_16 AC 1,029 ms
7,168 KB
testcase_17 AC 1,175 ms
7,680 KB
testcase_18 AC 1,679 ms
8,832 KB
testcase_19 AC 1,574 ms
8,832 KB
testcase_20 AC 1,592 ms
8,832 KB
testcase_21 AC 258 ms
5,376 KB
testcase_22 AC 117 ms
5,376 KB
testcase_23 AC 1,427 ms
8,704 KB
testcase_24 AC 1,403 ms
8,704 KB
testcase_25 AC 835 ms
6,656 KB
testcase_26 AC 364 ms
5,376 KB
testcase_27 AC 1,279 ms
8,320 KB
testcase_28 AC 888 ms
7,040 KB
testcase_29 AC 84 ms
5,376 KB
testcase_30 AC 1,013 ms
7,296 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;
  for (int i = 0; i < n; i++) {
    st.insert(s[i]);
  }
  vector<int> ans(n, 0);
  for (int i = 0; i < n; i++) {
    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