結果

問題 No.1994 Confusing Name
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-14 00:24:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 848 bytes
コンパイル時間 1,258 ms
コンパイル使用メモリ 125,288 KB
実行使用メモリ 443,628 KB
最終ジャッジ日時 2024-11-29 15:22:05
合計ジャッジ時間 51,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
304,156 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
264,888 KB
testcase_04 AC 2 ms
13,632 KB
testcase_05 AC 17 ms
337,396 KB
testcase_06 AC 45 ms
19,112 KB
testcase_07 AC 8 ms
341,720 KB
testcase_08 AC 36 ms
17,392 KB
testcase_09 AC 52 ms
338,980 KB
testcase_10 AC 19 ms
14,664 KB
testcase_11 AC 17 ms
334,172 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,236 ms
443,628 KB
testcase_22 AC 539 ms
71,624 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,561 ms
158,836 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 384 ms
48,460 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <unordered_map>
#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;
    vector<string> S(N);
    unordered_map<string, int> mp;

    for (int i=0; i<N; i++){
        cin >> S[i];
        mp[S[i]]++;
    }

    for (int i=0; i<N; i++){
        ans = 0;
        for (int j=0; j<S[i].size(); j++){
            for (int k=0; k<26; k++){
                c = S[i][j];
                if (c == 'a'+k) continue;
                S[i][j] = 'a'+k;
                ans += mp[S[i]];
                S[i][j] = c; 
            }
        }
        cout << ans << '\n';
    }

    return 0;
}
0