結果

問題 No.1994 Confusing Name
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-14 00:23:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 1,167 ms
コンパイル使用メモリ 123,060 KB
実行使用メモリ 27,992 KB
最終ジャッジ日時 2024-11-29 15:20:56
合計ジャッジ時間 5,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 170 ms
20,184 KB
testcase_13 AC 260 ms
26,584 KB
testcase_14 AC 277 ms
27,536 KB
testcase_15 AC 219 ms
23,824 KB
testcase_16 AC 192 ms
21,624 KB
testcase_17 AC 209 ms
23,680 KB
testcase_18 AC 271 ms
27,736 KB
testcase_19 AC 282 ms
27,864 KB
testcase_20 AC 288 ms
27,992 KB
testcase_21 AC 28 ms
8,104 KB
testcase_22 AC 14 ms
6,816 KB
testcase_23 AC 233 ms
23,816 KB
testcase_24 AC 217 ms
23,084 KB
testcase_25 AC 112 ms
15,648 KB
testcase_26 AC 44 ms
9,516 KB
testcase_27 AC 198 ms
21,684 KB
testcase_28 AC 150 ms
19,160 KB
testcase_29 AC 12 ms
6,816 KB
testcase_30 AC 160 ms
19,304 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