結果

問題 No.1994 Confusing Name
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-14 00:17:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 1,350 ms
コンパイル使用メモリ 118,604 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-05-07 02:48:41
合計ジャッジ時間 8,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 344 ms
20,480 KB
testcase_13 AC 459 ms
28,672 KB
testcase_14 AC 470 ms
29,568 KB
testcase_15 AC 353 ms
25,344 KB
testcase_16 AC 305 ms
22,528 KB
testcase_17 AC 350 ms
24,832 KB
testcase_18 AC 487 ms
30,080 KB
testcase_19 AC 490 ms
30,080 KB
testcase_20 AC 480 ms
30,336 KB
testcase_21 AC 68 ms
8,320 KB
testcase_22 AC 32 ms
5,848 KB
testcase_23 AC 401 ms
25,216 KB
testcase_24 AC 394 ms
24,192 KB
testcase_25 AC 225 ms
16,896 KB
testcase_26 AC 101 ms
10,112 KB
testcase_27 AC 351 ms
22,528 KB
testcase_28 AC 241 ms
18,048 KB
testcase_29 AC 25 ms
5,632 KB
testcase_30 AC 280 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <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);
    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 << endl;
    }

    return 0;
}
0