結果

問題 No.1994 Confusing Name
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-14 00:23:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 1,413 ms
コンパイル使用メモリ 123,212 KB
実行使用メモリ 28,116 KB
最終ジャッジ日時 2024-05-07 02:51:48
合計ジャッジ時間 5,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 142 ms
20,184 KB
testcase_13 AC 223 ms
26,584 KB
testcase_14 AC 235 ms
27,412 KB
testcase_15 AC 182 ms
23,828 KB
testcase_16 AC 156 ms
21,624 KB
testcase_17 AC 177 ms
23,480 KB
testcase_18 AC 231 ms
27,736 KB
testcase_19 AC 252 ms
27,844 KB
testcase_20 AC 250 ms
28,116 KB
testcase_21 AC 29 ms
8,108 KB
testcase_22 AC 13 ms
6,944 KB
testcase_23 AC 211 ms
23,816 KB
testcase_24 AC 179 ms
23,076 KB
testcase_25 AC 100 ms
15,648 KB
testcase_26 AC 41 ms
9,512 KB
testcase_27 AC 174 ms
21,684 KB
testcase_28 AC 129 ms
19,088 KB
testcase_29 AC 13 ms
6,944 KB
testcase_30 AC 130 ms
19,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    int N, ans;
    char c;
    cin >> N;
    string T;
    vector<string> S(N);
    unordered_map<string, int> mp;

    for (int i=0; i<N; i++){
        cin >> S[i];
        for (int j=0; j<S[i].size(); j++){
            c = S[i][j];
            S[i][j] = '.';
            mp[S[i]]++;
            S[i][j] = c;
        }
    }

    for (int i=0; i<N; i++){
        ans = 0;
        for (int j=0; j<S[i].size(); j++){
            c = S[i][j];
            S[i][j] = '.';
            ans += mp[S[i]]-1;
            S[i][j] = c;
        }
        cout << ans << '\n';
    }

    return 0;
}
0