結果

問題 No.1994 Confusing Name
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-29 15:11:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 210,640 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-05-29 15:11:57
合計ジャッジ時間 11,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 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,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 355 ms
20,480 KB
testcase_13 AC 529 ms
28,672 KB
testcase_14 AC 563 ms
29,696 KB
testcase_15 AC 412 ms
25,344 KB
testcase_16 AC 344 ms
22,400 KB
testcase_17 AC 432 ms
24,704 KB
testcase_18 AC 552 ms
30,080 KB
testcase_19 AC 580 ms
30,336 KB
testcase_20 AC 548 ms
30,208 KB
testcase_21 AC 62 ms
8,448 KB
testcase_22 AC 27 ms
6,944 KB
testcase_23 AC 485 ms
25,216 KB
testcase_24 AC 450 ms
24,192 KB
testcase_25 AC 247 ms
16,768 KB
testcase_26 AC 99 ms
10,240 KB
testcase_27 AC 414 ms
22,528 KB
testcase_28 AC 256 ms
17,920 KB
testcase_29 AC 21 ms
6,944 KB
testcase_30 AC 300 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<string> s(n);
    map<string, int> cnt;
    for (int i = 0; i < n; i++) {
        cin >> s[i];
        for (int j = 0; j < s[i].size(); j++) {
            char org = s[i][j];
            s[i][j] = '_';
            cnt[s[i]]++;
            s[i][j] = org;
        }
    }
    for (int i = 0; i < n; i++) {
        int ans = 0;
        for (int j = 0; j < s[i].size(); j++) {
            char org = s[i][j];
            s[i][j] = '_';
            ans += cnt[s[i]] - 1;
            s[i][j] = org;
        }
        cout << ans << "\n";
    }
}
0