結果

問題 No.1994 Confusing Name
ユーザー umezoumezo
提出日時 2022-07-02 02:28:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 211,200 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-11-26 11:27:08
合計ジャッジ時間 10,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 7 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 458 ms
24,320 KB
testcase_13 AC 560 ms
32,384 KB
testcase_14 AC 585 ms
33,408 KB
testcase_15 AC 447 ms
28,288 KB
testcase_16 AC 375 ms
25,216 KB
testcase_17 AC 435 ms
27,776 KB
testcase_18 AC 580 ms
34,048 KB
testcase_19 AC 587 ms
34,176 KB
testcase_20 AC 595 ms
34,176 KB
testcase_21 AC 86 ms
9,216 KB
testcase_22 AC 39 ms
6,212 KB
testcase_23 AC 501 ms
28,800 KB
testcase_24 AC 491 ms
28,032 KB
testcase_25 AC 283 ms
19,200 KB
testcase_26 AC 128 ms
11,392 KB
testcase_27 AC 441 ms
26,112 KB
testcase_28 AC 305 ms
20,480 KB
testcase_29 AC 29 ms
5,756 KB
testcase_30 AC 348 ms
22,272 KB
権限があれば一括ダウンロードができます

ソースコード

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,MM;
  rep(i,n){
    int a=S[i].size();
    rep(j,a){
      string s=S[i];
      s[j]='$';
      M[s]++;
    }
    MM[S[i]]++;
  }
  
  rep(i,n){
    int a=S[i].size();
    int ans=0;
    rep(j,a){
      string s=S[i];
      s[j]='$';
      ans+=M[s]-MM[S[i]];
    }
    cout<<ans<<endl;
  }
      
  return 0;
}
0