結果

問題 No.1994 Confusing Name
ユーザー umezoumezo
提出日時 2022-07-02 02:28:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 210,988 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-05-04 21:09:31
合計ジャッジ時間 10,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 466 ms
24,448 KB
testcase_13 AC 577 ms
32,384 KB
testcase_14 AC 568 ms
33,280 KB
testcase_15 AC 474 ms
28,288 KB
testcase_16 AC 365 ms
25,344 KB
testcase_17 AC 432 ms
27,776 KB
testcase_18 AC 604 ms
34,048 KB
testcase_19 AC 585 ms
34,176 KB
testcase_20 AC 600 ms
34,304 KB
testcase_21 AC 88 ms
9,344 KB
testcase_22 AC 38 ms
6,272 KB
testcase_23 AC 493 ms
28,800 KB
testcase_24 AC 497 ms
27,904 KB
testcase_25 AC 280 ms
19,200 KB
testcase_26 AC 121 ms
11,520 KB
testcase_27 AC 452 ms
26,112 KB
testcase_28 AC 303 ms
20,480 KB
testcase_29 AC 29 ms
5,760 KB
testcase_30 AC 333 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