結果

問題 No.1994 Confusing Name
ユーザー keisuke6keisuke6
提出日時 2022-07-01 21:46:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 513 bytes
コンパイル時間 3,441 ms
コンパイル使用メモリ 255,900 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-05-04 16:08:27
合計ジャッジ時間 33,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 9 ms
5,376 KB
testcase_06 AC 20 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,612 ms
8,832 KB
testcase_16 AC 1,355 ms
8,064 KB
testcase_17 AC 1,565 ms
8,704 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 338 ms
5,376 KB
testcase_22 AC 152 ms
5,376 KB
testcase_23 AC 1,968 ms
9,984 KB
testcase_24 AC 1,979 ms
9,984 KB
testcase_25 AC 1,089 ms
7,552 KB
testcase_26 AC 495 ms
5,504 KB
testcase_27 AC 1,824 ms
9,472 KB
testcase_28 AC 1,198 ms
7,808 KB
testcase_29 AC 110 ms
5,376 KB
testcase_30 AC 1,369 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int int
signed main(){
  int N;
  cin>>N;
  map<string,int> s;
  vector<string> S(N);
  for(int i=0;i<N;i++){
      cin>>S[i];
      s[S[i]]++;
  }
  vector<string> T=S;
  for(int i=0;i<N;i++){
      int ans = 0;
      for(int k=0;k<S[i].size();k++)for(int j=0;j<26;j++){
          if(S[i][k] == (char)('a'+j)) continue;
          S[i][k] = (char)('a'+j);
          if(s.count(S[i])) ans += s[S[i]];
          S[i] = T[i];
      }
      cout<<ans<<endl;
  }
}
0