結果

問題 No.1994 Confusing Name
ユーザー kokatsukokatsu
提出日時 2022-07-01 22:01:06
言語 D
(dmd 2.109.1)
結果
TLE  
実行時間 -
コード長 596 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 207,760 KB
実行使用メモリ 29,132 KB
最終ジャッジ日時 2024-06-22 15:35:34
合計ジャッジ時間 6,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 TLE * 1 -- * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N;
    readf("%d\n", N);

    auto S = new string[](N);
    bool[string] isRegistered;
    foreach (i; 0 .. N) {
        S[i] = readln.chomp;
        isRegistered[S[i]] = true;
    }

    foreach (s; S) {
        int res;

        auto t = s.dup.to!(dchar[]);
        auto len = t.length;
        foreach (i; 0 .. len) {
            foreach (l; lowercase) {
                if (l == s[i]) continue;
                t[i] = l;

                if (t.to!string in isRegistered) ++res;
            }

            t[i] = s[i];
        }

        res.writeln;
    }
}
0