結果

問題 No.1994 Confusing Name
ユーザー nyuminyusupenyuminyusupe
提出日時 2022-07-20 20:15:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 1,643 ms
コンパイル使用メモリ 177,028 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-07-02 14:07:58
合計ジャッジ時間 8,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 346 ms
20,480 KB
testcase_13 AC 451 ms
28,672 KB
testcase_14 AC 458 ms
29,696 KB
testcase_15 AC 351 ms
25,344 KB
testcase_16 AC 307 ms
22,528 KB
testcase_17 AC 352 ms
24,832 KB
testcase_18 AC 480 ms
30,208 KB
testcase_19 AC 488 ms
30,208 KB
testcase_20 AC 479 ms
30,464 KB
testcase_21 AC 69 ms
8,320 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 404 ms
25,344 KB
testcase_24 AC 394 ms
24,320 KB
testcase_25 AC 228 ms
16,896 KB
testcase_26 AC 99 ms
10,240 KB
testcase_27 AC 343 ms
22,528 KB
testcase_28 AC 247 ms
18,048 KB
testcase_29 AC 26 ms
6,940 KB
testcase_30 AC 287 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0; i< (n); i++)
using namespace std;
typedef long long ll;
typedef pair<int , int> P;
const ll inf = (1ll<<60);
//const int mod = 998244353;
const int mod = 1000000007;

int main(){
    int n; cin>>n;
    map<string,int> sum;
    vector<string> s(n);
    rep(i,n){
        cin>>s[i];
        rep(j,s[i].size()){
            char k=s[i][j];
            s[i][j]='0';
            sum[s[i]]++;
            s[i][j]=k;
        }
    }

    rep(i,n){
        int res=0;
        rep(j,s[i].size()){
            char k=s[i][j];
            s[i][j]='0';
            res+=sum[s[i]]-1;
            s[i][j]=k;
        }
        cout<<res<<endl;
    }
}
0