結果

問題 No.1994 Confusing Name
ユーザー atjh16atjh16
提出日時 2022-08-11 23:29:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 713 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 211,212 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-09-22 06:02:15
合計ジャッジ時間 12,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 503 ms
20,736 KB
testcase_13 AC 650 ms
28,928 KB
testcase_14 AC 664 ms
30,080 KB
testcase_15 AC 541 ms
25,856 KB
testcase_16 AC 454 ms
23,424 KB
testcase_17 AC 523 ms
25,600 KB
testcase_18 AC 713 ms
30,208 KB
testcase_19 AC 705 ms
30,464 KB
testcase_20 AC 705 ms
30,720 KB
testcase_21 AC 99 ms
9,856 KB
testcase_22 AC 44 ms
7,296 KB
testcase_23 AC 578 ms
25,600 KB
testcase_24 AC 577 ms
24,576 KB
testcase_25 AC 330 ms
17,792 KB
testcase_26 AC 146 ms
11,520 KB
testcase_27 AC 532 ms
22,912 KB
testcase_28 AC 359 ms
18,816 KB
testcase_29 AC 35 ms
7,040 KB
testcase_30 AC 397 ms
20,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n, m;
string s[50000];
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++) {
            string t = s[i].substr(0, j) + "#" + s[i].substr(j + 1, s[i].size() - j - 1);

            Mp[t]++;
        }
    }

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

        for (int j = 0; j < s[i].size(); j++) {
            string t = s[i].substr(0, j) + "#" + s[i].substr(j + 1, s[i].size() - j - 1);

            m += Mp[t] - 1;
        }

        cout << m << endl;
    }
}
0