結果

問題 No.1994 Confusing Name
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-01 22:04:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,593 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,004 KB
最終ジャッジ日時 2024-05-04 16:28:28
合計ジャッジ時間 21,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,056 KB
testcase_01 AC 47 ms
59,392 KB
testcase_02 AC 43 ms
59,648 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 59 ms
73,600 KB
testcase_06 AC 77 ms
76,160 KB
testcase_07 AC 49 ms
67,968 KB
testcase_08 AC 70 ms
76,488 KB
testcase_09 AC 78 ms
76,416 KB
testcase_10 AC 64 ms
76,032 KB
testcase_11 AC 61 ms
73,088 KB
testcase_12 AC 1,131 ms
91,392 KB
testcase_13 AC 1,593 ms
92,004 KB
testcase_14 AC 1,368 ms
91,556 KB
testcase_15 AC 1,280 ms
87,552 KB
testcase_16 AC 1,127 ms
86,576 KB
testcase_17 AC 1,229 ms
87,680 KB
testcase_18 AC 1,555 ms
91,648 KB
testcase_19 AC 1,500 ms
91,520 KB
testcase_20 AC 1,519 ms
91,712 KB
testcase_21 AC 319 ms
79,232 KB
testcase_22 AC 193 ms
77,468 KB
testcase_23 AC 1,225 ms
91,264 KB
testcase_24 AC 1,209 ms
91,648 KB
testcase_25 AC 888 ms
84,736 KB
testcase_26 AC 434 ms
81,316 KB
testcase_27 AC 1,180 ms
90,028 KB
testcase_28 AC 922 ms
85,888 KB
testcase_29 AC 172 ms
77,184 KB
testcase_30 AC 1,028 ms
87,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = [input() for i in range(n)]
dic = {}
for s in S:
    dic[s] = dic.get(s,0)+1

for s in S:
    ans = 0
    ns = list(s)
    for i in range(len(s)):
        b = ns[i]
        for j in range(26):
            c = chr(ord("a")+j)
            if b == c:
                continue
            ns[i] = c
            ans += dic.get("".join(ns),0)
        ns[i] = b
    print(ans)
0