結果

問題 No.1994 Confusing Name
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 21:34:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 342 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 376,988 KB
最終ジャッジ日時 2024-11-26 04:10:03
合計ジャッジ時間 53,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,568 KB
testcase_01 AC 29 ms
196,228 KB
testcase_02 AC 28 ms
17,568 KB
testcase_03 AC 25 ms
201,904 KB
testcase_04 AC 26 ms
15,872 KB
testcase_05 AC 77 ms
266,180 KB
testcase_06 AC 139 ms
26,464 KB
testcase_07 AC 53 ms
327,476 KB
testcase_08 AC 111 ms
27,832 KB
testcase_09 AC 149 ms
357,116 KB
testcase_10 AC 83 ms
22,848 KB
testcase_11 AC 77 ms
366,272 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,829 ms
376,988 KB
testcase_22 AC 851 ms
100,216 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 724 ms
63,408 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for x in X:
    print(D[x] - len(x))
0