結果

問題 No.1994 Confusing Name
ユーザー SSRSSSRS
提出日時 2022-07-01 21:24:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,725 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 1,594 ms
コンパイル使用メモリ 177,456 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-05-04 15:24:01
合計ジャッジ時間 24,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 12 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,455 ms
8,704 KB
testcase_13 AC 1,725 ms
8,832 KB
testcase_14 AC 1,666 ms
8,448 KB
testcase_15 AC 1,289 ms
7,552 KB
testcase_16 AC 1,070 ms
7,040 KB
testcase_17 AC 1,205 ms
7,424 KB
testcase_18 AC 1,627 ms
8,832 KB
testcase_19 AC 1,675 ms
8,960 KB
testcase_20 AC 1,699 ms
8,832 KB
testcase_21 AC 274 ms
5,376 KB
testcase_22 AC 116 ms
5,376 KB
testcase_23 AC 1,450 ms
8,448 KB
testcase_24 AC 1,498 ms
8,448 KB
testcase_25 AC 862 ms
6,528 KB
testcase_26 AC 397 ms
5,376 KB
testcase_27 AC 1,326 ms
8,064 KB
testcase_28 AC 914 ms
6,784 KB
testcase_29 AC 85 ms
5,376 KB
testcase_30 AC 1,059 ms
7,168 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]);
  }
  for (int i = 0; i < N; i++){
    int ans = 0;
    int L = S[i].size();
    st.erase(S[i]);
    for (int j = 0; j < L; j++){
      for (int k = 0; k < 26; k++){
        string T = S[i];
        T[j] = 'a' + k;
        if (st.count(T) == 1){
          ans++;
        }
      }
    }
    st.insert(S[i]);
    cout << ans << endl;
  }
}
0