結果

問題 No.1994 Confusing Name
ユーザー mmn15277198mmn15277198
提出日時 2022-07-31 13:43:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 493 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 174,352 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-07-20 22:40:38
合計ジャッジ時間 29,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 8 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 19 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 1,849 ms
8,704 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,554 ms
7,552 KB
testcase_16 AC 1,325 ms
7,168 KB
testcase_17 AC 1,526 ms
7,552 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 317 ms
5,376 KB
testcase_22 AC 138 ms
5,376 KB
testcase_23 AC 1,891 ms
8,448 KB
testcase_24 AC 1,780 ms
8,448 KB
testcase_25 AC 1,007 ms
6,528 KB
testcase_26 AC 454 ms
5,376 KB
testcase_27 AC 1,678 ms
8,064 KB
testcase_28 AC 1,126 ms
6,912 KB
testcase_29 AC 103 ms
5,376 KB
testcase_30 AC 1,244 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int n;
  cin >> n;
  vector<string> s(n);
  set<string> st;
  for (int i = 0; i < n; i++) {
    cin >> s[i];
    st.insert(s[i]);
  }
  for (int i = 0; i < n; i++) {
    int ans = 0;
    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 += st.count(t);
      }
    }
    cout << ans << endl;
  }
  return 0;
}
0