結果

問題 No.1994 Confusing Name
ユーザー kokatsukokatsu
提出日時 2022-07-01 22:11:00
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,832 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 205,880 KB
実行使用メモリ 22,596 KB
最終ジャッジ日時 2024-06-22 15:36:42
合計ジャッジ時間 26,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 26 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 26 ms
6,944 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 1,406 ms
22,460 KB
testcase_13 AC 1,781 ms
21,908 KB
testcase_14 AC 1,694 ms
21,980 KB
testcase_15 AC 1,523 ms
11,540 KB
testcase_16 AC 1,270 ms
10,428 KB
testcase_17 AC 1,480 ms
10,236 KB
testcase_18 AC 1,798 ms
20,888 KB
testcase_19 AC 1,781 ms
22,596 KB
testcase_20 AC 1,832 ms
21,544 KB
testcase_21 AC 347 ms
7,692 KB
testcase_22 AC 172 ms
6,984 KB
testcase_23 AC 1,556 ms
21,340 KB
testcase_24 AC 1,558 ms
22,176 KB
testcase_25 AC 971 ms
11,080 KB
testcase_26 AC 467 ms
7,648 KB
testcase_27 AC 1,330 ms
21,736 KB
testcase_28 AC 1,107 ms
11,344 KB
testcase_29 AC 131 ms
7,052 KB
testcase_30 AC 1,150 ms
10,528 KB
権限があれば一括ダウンロードができます

ソースコード

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 len = s.length;
        foreach (i; 0 .. len) {
            foreach (l; lowercase) {
                if (l == s[i]) continue;
                string t = s[0..i] ~ l ~ s[i+1..len];

                if (t in isRegistered) ++res;
            }
        }

        res.writeln;
    }
}
0