結果

問題 No.1994 Confusing Name
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 21:32:47
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 400 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 1,036,636 KB
最終ジャッジ日時 2024-11-26 04:02:49
合計ジャッジ時間 51,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
63,616 KB
testcase_01 MLE -
testcase_02 AC 45 ms
67,752 KB
testcase_03 AC 41 ms
511,204 KB
testcase_04 AC 36 ms
58,756 KB
testcase_05 MLE -
testcase_06 AC 120 ms
106,312 KB
testcase_07 MLE -
testcase_08 AC 99 ms
100,444 KB
testcase_09 MLE -
testcase_10 AC 97 ms
94,436 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 AC 510 ms
212,640 KB
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 1,530 ms
439,980 KB
testcase_27 MLE -
testcase_28 TLE -
testcase_29 AC 404 ms
182,136 KB
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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)
    if 0:
        print("a =", a)
        print("D =", D)

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