結果

問題 No.1994 Confusing Name
ユーザー lloyzlloyz
提出日時 2022-07-01 21:34:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,157 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-11-26 04:08:39
合計ジャッジ時間 17,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,680 KB
testcase_01 AC 45 ms
60,160 KB
testcase_02 AC 47 ms
61,056 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 68 ms
74,004 KB
testcase_06 AC 88 ms
76,564 KB
testcase_07 AC 57 ms
68,224 KB
testcase_08 AC 80 ms
76,160 KB
testcase_09 AC 91 ms
76,304 KB
testcase_10 AC 75 ms
76,236 KB
testcase_11 AC 73 ms
76,232 KB
testcase_12 AC 879 ms
82,164 KB
testcase_13 AC 1,118 ms
82,684 KB
testcase_14 AC 1,054 ms
82,560 KB
testcase_15 AC 979 ms
80,288 KB
testcase_16 AC 870 ms
80,124 KB
testcase_17 AC 963 ms
80,644 KB
testcase_18 AC 1,136 ms
82,560 KB
testcase_19 AC 1,131 ms
82,640 KB
testcase_20 AC 1,157 ms
82,816 KB
testcase_21 AC 263 ms
77,588 KB
testcase_22 AC 188 ms
76,940 KB
testcase_23 AC 977 ms
82,132 KB
testcase_24 AC 944 ms
82,356 KB
testcase_25 AC 695 ms
79,544 KB
testcase_26 AC 350 ms
77,904 KB
testcase_27 AC 902 ms
82,060 KB
testcase_28 AC 729 ms
79,836 KB
testcase_29 AC 162 ms
76,840 KB
testcase_30 AC 829 ms
80,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

alph = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

n = int(input())
S = [input() for _ in range(n)]

ans = [0 for _ in range(n)]
setS = set(S)
for i in range(n):
    s = S[i]
    m = len(s)
    for j in range(m):
        for k in alph:
            if s[j] == k:
                continue
            t = s[:j] + k + s[j + 1:]
            if t in setS:
                ans[i] += 1
for ele in ans:
    print(ele)
    
0