結果

問題 No.1994 Confusing Name
ユーザー atjh16atjh16
提出日時 2022-08-11 23:33:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 209,912 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-09-22 06:04:52
合計ジャッジ時間 10,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,812 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 407 ms
20,864 KB
testcase_13 AC 552 ms
28,928 KB
testcase_14 AC 541 ms
29,952 KB
testcase_15 AC 437 ms
25,856 KB
testcase_16 AC 361 ms
23,296 KB
testcase_17 AC 424 ms
25,472 KB
testcase_18 AC 565 ms
30,336 KB
testcase_19 AC 583 ms
30,464 KB
testcase_20 AC 571 ms
30,592 KB
testcase_21 AC 87 ms
9,984 KB
testcase_22 AC 37 ms
7,296 KB
testcase_23 AC 487 ms
25,472 KB
testcase_24 AC 469 ms
24,576 KB
testcase_25 AC 273 ms
17,792 KB
testcase_26 AC 117 ms
11,648 KB
testcase_27 AC 416 ms
23,040 KB
testcase_28 AC 296 ms
18,816 KB
testcase_29 AC 29 ms
7,040 KB
testcase_30 AC 320 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n, m;
string s[50000];
string t;
map<string, int> Mp;

int main() {    
    cin >> n;

    for (int i = 0; i < n; i++) {
        cin >> s[i];

        for (int j = 0; j < s[i].size(); j++) {
            t = s[i];
            t[j] = '#';
            Mp[t]++;
        }
    }

    for (int i = 0; i < n; i++) {
        m = 0;

        for (int j = 0; j < s[i].size(); j++) {
            t = s[i];
            t[j] = '#';
            m += Mp[t] - 1;
        }

        cout << m << endl;
    }
}
0