結果

問題 No.1994 Confusing Name
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 21:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 142,832 KB
最終ジャッジ日時 2024-05-04 15:53:51
合計ジャッジ時間 6,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,584 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 32 ms
51,456 KB
testcase_04 AC 32 ms
51,456 KB
testcase_05 AC 53 ms
68,480 KB
testcase_06 AC 76 ms
77,052 KB
testcase_07 AC 41 ms
61,952 KB
testcase_08 AC 66 ms
73,216 KB
testcase_09 AC 66 ms
74,496 KB
testcase_10 AC 57 ms
71,424 KB
testcase_11 AC 55 ms
69,120 KB
testcase_12 AC 267 ms
117,444 KB
testcase_13 AC 306 ms
141,496 KB
testcase_14 AC 320 ms
142,832 KB
testcase_15 AC 271 ms
130,924 KB
testcase_16 AC 249 ms
123,732 KB
testcase_17 AC 269 ms
128,420 KB
testcase_18 AC 349 ms
141,512 KB
testcase_19 AC 340 ms
141,644 KB
testcase_20 AC 348 ms
141,432 KB
testcase_21 AC 123 ms
91,824 KB
testcase_22 AC 97 ms
81,152 KB
testcase_23 AC 308 ms
128,140 KB
testcase_24 AC 302 ms
130,556 KB
testcase_25 AC 213 ms
115,388 KB
testcase_26 AC 143 ms
99,488 KB
testcase_27 AC 287 ms
122,292 KB
testcase_28 AC 225 ms
116,020 KB
testcase_29 AC 91 ms
82,176 KB
testcase_30 AC 230 ms
116,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

alp = "abcdefghijklmnopqrstuvwxyz"
N = int(input())
X = []
D = {}
for _ in range(N):
    a = input()
    l = len(a)
    for i in range(l):
        b = a[:i] + "_" + a[i+1:]
        if b in D:
            D[b] += 1
        else:
            D[b] = 1
    X.append(a)
for x in X:
    l = len(x)
    ans = -l
    for i in range(l):
        y = x[:i] + "_" + x[i+1:]
        ans += D[y]
    print(ans)
0