結果

問題 No.1994 Confusing Name
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-07-01 21:36:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,343 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 84,924 KB
最終ジャッジ日時 2024-05-04 15:52:27
合計ジャッジ時間 19,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,520 KB
testcase_01 AC 46 ms
59,904 KB
testcase_02 AC 46 ms
59,904 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 61 ms
72,704 KB
testcase_06 AC 78 ms
76,032 KB
testcase_07 AC 56 ms
66,816 KB
testcase_08 AC 74 ms
75,904 KB
testcase_09 AC 77 ms
75,904 KB
testcase_10 AC 69 ms
76,032 KB
testcase_11 AC 67 ms
73,148 KB
testcase_12 AC 1,021 ms
84,736 KB
testcase_13 AC 1,343 ms
84,864 KB
testcase_14 AC 1,203 ms
84,728 KB
testcase_15 AC 1,100 ms
81,920 KB
testcase_16 AC 940 ms
81,152 KB
testcase_17 AC 1,110 ms
82,172 KB
testcase_18 AC 1,301 ms
84,864 KB
testcase_19 AC 1,292 ms
84,736 KB
testcase_20 AC 1,297 ms
84,864 KB
testcase_21 AC 263 ms
77,696 KB
testcase_22 AC 161 ms
76,672 KB
testcase_23 AC 1,098 ms
84,924 KB
testcase_24 AC 1,078 ms
84,480 KB
testcase_25 AC 710 ms
81,408 KB
testcase_26 AC 352 ms
78,464 KB
testcase_27 AC 1,029 ms
84,272 KB
testcase_28 AC 796 ms
80,896 KB
testcase_29 AC 147 ms
76,416 KB
testcase_30 AC 890 ms
82,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

from sys import stdin

N = int(stdin.readline())

S = list(stdin.readline()[:-1] for i in range(N))

SS = set(S)

ANS = []
for s in S:

    ans = 0
    for i in range(len(s)):

        for c in "abcdefghijklmnopqrstuvwxyz":

            if c == s[i]:
                continue
            news = s[:i] + c + s[i+1:]
            if news in SS:
                ans += 1

    ANS.append(str(ans))

print ("\n".join(ANS))
0