結果

問題 No.1994 Confusing Name
ユーザー ruthenruthen
提出日時 2022-07-01 21:35:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,711 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 210,904 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-04 15:49:03
合計ジャッジ時間 23,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 1,500 ms
8,576 KB
testcase_13 AC 1,711 ms
8,704 KB
testcase_14 AC 1,619 ms
8,448 KB
testcase_15 AC 1,267 ms
7,552 KB
testcase_16 AC 1,081 ms
7,040 KB
testcase_17 AC 1,211 ms
7,424 KB
testcase_18 AC 1,672 ms
8,704 KB
testcase_19 AC 1,668 ms
8,576 KB
testcase_20 AC 1,678 ms
8,704 KB
testcase_21 AC 259 ms
5,376 KB
testcase_22 AC 113 ms
5,376 KB
testcase_23 AC 1,395 ms
8,320 KB
testcase_24 AC 1,389 ms
8,448 KB
testcase_25 AC 777 ms
6,400 KB
testcase_26 AC 363 ms
5,376 KB
testcase_27 AC 1,213 ms
8,192 KB
testcase_28 AC 860 ms
6,912 KB
testcase_29 AC 86 ms
5,376 KB
testcase_30 AC 992 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef _RUTHEN
#include "debug.hpp"
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    V<string> S(N);
    rep(i, N) cin >> S[i];
    set<string> st[11];
    rep(i, N) st[S[i].size()].insert(S[i]);
    rep(i, N) {
        int res = 0;
        rep(j, S[i].size()) {
            for (char c = 'a'; c <= 'z'; c++) {
                if (c != S[i][j]) {
                    string k = S[i].substr(0, j) + c + S[i].substr(j + 1);
                    res += st[S[i].size()].count(k);
                }
            }
        }
        cout << res << '\n';
    }
    return 0;
}
0