結果

問題 No.1994 Confusing Name
ユーザー tonyu0tonyu0
提出日時 2022-07-01 23:37:57
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 314 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 945,512 KB
最終ジャッジ日時 2024-11-26 07:38:32
合計ジャッジ時間 52,359 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
73,344 KB
testcase_01 MLE -
testcase_02 AC 66 ms
74,656 KB
testcase_03 MLE -
testcase_04 AC 57 ms
70,176 KB
testcase_05 MLE -
testcase_06 AC 151 ms
118,304 KB
testcase_07 MLE -
testcase_08 AC 126 ms
106,020 KB
testcase_09 MLE -
testcase_10 AC 113 ms
97,060 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 542 ms
218,484 KB
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 1,808 ms
427,776 KB
testcase_27 MLE -
testcase_28 TLE -
testcase_29 AC 426 ms
190,320 KB
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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