結果

問題 No.1994 Confusing Name
ユーザー umezoumezo
提出日時 2022-07-02 01:42:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 573 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 211,696 KB
実行使用メモリ 370,560 KB
最終ジャッジ日時 2024-11-26 10:25:49
合計ジャッジ時間 52,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
214,820 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
211,488 KB
testcase_04 AC 1 ms
13,640 KB
testcase_05 AC 23 ms
7,936 KB
testcase_06 AC 56 ms
19,876 KB
testcase_07 AC 11 ms
266,788 KB
testcase_08 AC 41 ms
17,568 KB
testcase_09 AC 62 ms
275,200 KB
testcase_10 AC 28 ms
15,136 KB
testcase_11 AC 24 ms
273,664 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,275 ms
370,560 KB
testcase_22 AC 518 ms
66,712 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,859 ms
167,204 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 378 ms
52,864 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<string> S(n);
  rep(i,n) cin>>S[i];
  map<string,int> M;
  rep(i,n) M[S[i]]++;
  
  rep(i,n){
    int a=S[i].size();
    int ans=0;
    rep(j,a){
      string s=S[i];
      rep(k,26){
        if(k==S[i][j]-'a') continue;
        s[j]=char('a'+k);
        ans+=M[s];
      }
    }
    cout<<ans<<endl;
  }
      
  return 0;
}
0