結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,288 KB
testcase_01 AC 45 ms
59,756 KB
testcase_02 AC 46 ms
59,520 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 68 ms
73,472 KB
testcase_06 AC 91 ms
76,272 KB
testcase_07 AC 59 ms
68,224 KB
testcase_08 AC 79 ms
76,288 KB
testcase_09 AC 89 ms
75,936 KB
testcase_10 AC 79 ms
76,196 KB
testcase_11 AC 71 ms
73,152 KB
testcase_12 AC 1,372 ms
91,556 KB
testcase_13 AC 1,959 ms
91,712 KB
testcase_14 AC 1,659 ms
91,460 KB
testcase_15 AC 1,501 ms
87,524 KB
testcase_16 AC 1,311 ms
86,020 KB
testcase_17 AC 1,358 ms
87,552 KB
testcase_18 AC 1,699 ms
91,540 KB
testcase_19 AC 1,792 ms
91,444 KB
testcase_20 AC 1,778 ms
91,460 KB
testcase_21 AC 375 ms
79,616 KB
testcase_22 AC 222 ms
77,176 KB
testcase_23 AC 1,573 ms
91,304 KB
testcase_24 AC 1,504 ms
91,492 KB
testcase_25 AC 987 ms
84,868 KB
testcase_26 AC 521 ms
81,056 KB
testcase_27 AC 1,373 ms
89,984 KB
testcase_28 AC 1,039 ms
85,600 KB
testcase_29 AC 197 ms
76,804 KB
testcase_30 AC 1,112 ms
87,308 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