結果

問題 No.1994 Confusing Name
ユーザー lloyzlloyz
提出日時 2022-07-01 21:34:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,025 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 83,016 KB
最終ジャッジ日時 2024-05-04 15:46:55
合計ジャッジ時間 15,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,088 KB
testcase_01 AC 39 ms
60,544 KB
testcase_02 AC 39 ms
60,928 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 66 ms
74,752 KB
testcase_06 AC 82 ms
76,580 KB
testcase_07 AC 53 ms
68,592 KB
testcase_08 AC 70 ms
76,140 KB
testcase_09 AC 82 ms
76,540 KB
testcase_10 AC 70 ms
76,180 KB
testcase_11 AC 68 ms
76,048 KB
testcase_12 AC 790 ms
83,016 KB
testcase_13 AC 1,025 ms
82,796 KB
testcase_14 AC 930 ms
82,724 KB
testcase_15 AC 897 ms
80,748 KB
testcase_16 AC 791 ms
80,072 KB
testcase_17 AC 918 ms
80,656 KB
testcase_18 AC 995 ms
82,556 KB
testcase_19 AC 1,001 ms
82,476 KB
testcase_20 AC 1,003 ms
82,736 KB
testcase_21 AC 249 ms
77,752 KB
testcase_22 AC 166 ms
77,244 KB
testcase_23 AC 861 ms
82,392 KB
testcase_24 AC 865 ms
82,868 KB
testcase_25 AC 622 ms
79,584 KB
testcase_26 AC 324 ms
78,168 KB
testcase_27 AC 814 ms
81,992 KB
testcase_28 AC 660 ms
79,760 KB
testcase_29 AC 145 ms
76,988 KB
testcase_30 AC 731 ms
80,328 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