結果

問題 No.1994 Confusing Name
ユーザー tonyu0tonyu0
提出日時 2022-07-01 23:25:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 371,144 KB
最終ジャッジ日時 2024-11-26 07:23:35
合計ジャッジ時間 54,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,440 KB
testcase_01 AC 28 ms
178,384 KB
testcase_02 AC 29 ms
17,444 KB
testcase_03 AC 27 ms
192,272 KB
testcase_04 AC 27 ms
17,444 KB
testcase_05 AC 86 ms
222,776 KB
testcase_06 AC 159 ms
28,176 KB
testcase_07 AC 55 ms
218,572 KB
testcase_08 AC 131 ms
28,320 KB
testcase_09 AC 180 ms
29,092 KB
testcase_10 AC 102 ms
22,884 KB
testcase_11 AC 88 ms
221,152 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 TLE -
testcase_22 AC 1,004 ms
100,288 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 806 ms
62,944 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from string import ascii_lowercase
n,*s=open(0).read().split()
n=int(n)
d=defaultdict(int)
for t in s:
	d[t]+=1
for t in s:
    o=0
    for i in range(len(t)):
        for c in list(ascii_lowercase):
            if t[i]==c:continue
            o+=d[t[:i]+c+t[i+1:]]
    print(o)
0