結果

問題 No.1994 Confusing Name
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 21:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 142,956 KB
最終ジャッジ日時 2024-11-26 04:20:25
合計ジャッジ時間 8,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 66 ms
68,736 KB
testcase_06 AC 89 ms
77,056 KB
testcase_07 AC 52 ms
61,696 KB
testcase_08 AC 77 ms
73,472 KB
testcase_09 AC 79 ms
74,880 KB
testcase_10 AC 68 ms
71,040 KB
testcase_11 AC 65 ms
68,864 KB
testcase_12 AC 347 ms
117,096 KB
testcase_13 AC 397 ms
141,504 KB
testcase_14 AC 397 ms
142,956 KB
testcase_15 AC 332 ms
130,828 KB
testcase_16 AC 314 ms
123,968 KB
testcase_17 AC 327 ms
128,512 KB
testcase_18 AC 429 ms
141,492 KB
testcase_19 AC 439 ms
141,376 KB
testcase_20 AC 430 ms
141,048 KB
testcase_21 AC 142 ms
91,728 KB
testcase_22 AC 106 ms
81,408 KB
testcase_23 AC 388 ms
128,144 KB
testcase_24 AC 367 ms
130,420 KB
testcase_25 AC 265 ms
115,168 KB
testcase_26 AC 175 ms
99,392 KB
testcase_27 AC 367 ms
122,432 KB
testcase_28 AC 295 ms
115,388 KB
testcase_29 AC 109 ms
82,432 KB
testcase_30 AC 303 ms
116,344 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