結果

問題 No.1994 Confusing Name
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-14 00:05:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 783 bytes
コンパイル時間 1,123 ms
コンパイル使用メモリ 117,416 KB
実行使用メモリ 337,920 KB
最終ジャッジ日時 2024-11-29 15:03:48
合計ジャッジ時間 52,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,496 KB
testcase_01 AC 2 ms
201,252 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
202,536 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 26 ms
255,360 KB
testcase_06 AC 61 ms
18,432 KB
testcase_07 AC 12 ms
263,716 KB
testcase_08 AC 45 ms
16,128 KB
testcase_09 AC 68 ms
253,568 KB
testcase_10 AC 30 ms
13,824 KB
testcase_11 AC 27 ms
245,376 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,389 ms
337,920 KB
testcase_22 AC 563 ms
65,152 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,971 ms
165,632 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 422 ms
53,120 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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;
    cin >> N;
    string T;
    vector<string> S(N);
    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++){
                T = S[i];
                if (S[i][j] == 'a'+k) continue;
                T[j] = 'a'+k;
                ans += mp[T];
            }
        }
        cout << ans << endl;
    }

    return 0;
}
0