結果

問題 No.1994 Confusing Name
ユーザー rogi52rogi52
提出日時 2022-10-03 23:37:42
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,584 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 2,588 ms
コンパイル使用メモリ 212,684 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-28 04:51:22
合計ジャッジ時間 24,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 8 ms
6,816 KB
testcase_06 AC 17 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 13 ms
6,816 KB
testcase_09 AC 18 ms
6,816 KB
testcase_10 AC 9 ms
6,816 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 1,303 ms
6,820 KB
testcase_13 AC 1,584 ms
6,820 KB
testcase_14 AC 1,446 ms
6,816 KB
testcase_15 AC 1,180 ms
6,820 KB
testcase_16 AC 1,020 ms
6,820 KB
testcase_17 AC 1,163 ms
6,820 KB
testcase_18 AC 1,548 ms
6,820 KB
testcase_19 AC 1,557 ms
6,816 KB
testcase_20 AC 1,541 ms
6,820 KB
testcase_21 AC 266 ms
6,816 KB
testcase_22 AC 119 ms
6,816 KB
testcase_23 AC 1,366 ms
6,820 KB
testcase_24 AC 1,321 ms
6,820 KB
testcase_25 AC 784 ms
6,816 KB
testcase_26 AC 383 ms
6,816 KB
testcase_27 AC 1,237 ms
6,816 KB
testcase_28 AC 868 ms
6,820 KB
testcase_29 AC 87 ms
6,820 KB
testcase_30 AC 976 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<string> S(N);
    rep(i,N) cin >> S[i];

    auto T = S;
    sort(T.begin(), T.end());
    rep(i,N) {
        int ans = 0;
        rep(j,int(S[i].size())) {
            for(char c = 'a'; c <= 'z'; c++) {
                if(S[i][j] != c) {
                    swap(S[i][j], c);
                    ans += binary_search(T.begin(), T.end(), S[i]);
                    swap(S[i][j], c);
                }
            }
        }
        cout << ans << "\n";
    }
}
0