結果

問題 No.1994 Confusing Name
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-01 13:58:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 210,156 KB
実行使用メモリ 27,992 KB
最終ジャッジ日時 2024-12-01 13:59:09
合計ジャッジ時間 9,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 3 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 332 ms
20,184 KB
testcase_13 AC 359 ms
26,588 KB
testcase_14 AC 372 ms
27,408 KB
testcase_15 AC 335 ms
23,956 KB
testcase_16 AC 262 ms
21,624 KB
testcase_17 AC 304 ms
23,552 KB
testcase_18 AC 393 ms
27,736 KB
testcase_19 AC 428 ms
27,860 KB
testcase_20 AC 396 ms
27,992 KB
testcase_21 AC 54 ms
8,104 KB
testcase_22 AC 23 ms
5,736 KB
testcase_23 AC 334 ms
23,816 KB
testcase_24 AC 358 ms
23,204 KB
testcase_25 AC 191 ms
15,648 KB
testcase_26 AC 75 ms
9,644 KB
testcase_27 AC 296 ms
21,856 KB
testcase_28 AC 221 ms
19,292 KB
testcase_29 AC 19 ms
5,248 KB
testcase_30 AC 238 ms
19,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


int main(){
    int n;  cin >> n;
    vector<string> users(n);
    for(auto& s : users){
        cin >> s;
    }

    unordered_map<string, int> mp = {};
    for(auto& s : users){
        for(int i = 0; i < (int)s.size(); ++i){
            string t = s;
            ++mp[t.replace(i, 1, ".")];
        }
    }

    for(auto& s : users){
        int ans = 0;
        for(int i = 0; i < (int)s.size(); ++i){
            string t = s;
            ans += mp[t.replace(i, 1, ".")] - 1;
        }
        cout << ans << endl;
    }

    return 0;
}
0