結果

問題 No.1994 Confusing Name
ユーザー DrDrpilotDrDrpilot
提出日時 2022-07-02 12:32:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 170,796 KB
最終ジャッジ日時 2024-05-05 10:00:18
合計ジャッジ時間 12,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 43 ms
53,248 KB
testcase_04 AC 49 ms
53,504 KB
testcase_05 AC 96 ms
73,728 KB
testcase_06 AC 124 ms
77,952 KB
testcase_07 AC 64 ms
65,536 KB
testcase_08 AC 100 ms
77,824 KB
testcase_09 AC 103 ms
77,824 KB
testcase_10 AC 88 ms
77,184 KB
testcase_11 AC 83 ms
73,984 KB
testcase_12 AC 614 ms
135,376 KB
testcase_13 AC 705 ms
170,796 KB
testcase_14 AC 843 ms
168,644 KB
testcase_15 AC 660 ms
151,928 KB
testcase_16 AC 587 ms
139,056 KB
testcase_17 AC 629 ms
145,132 KB
testcase_18 AC 778 ms
169,424 KB
testcase_19 AC 807 ms
170,080 KB
testcase_20 AC 794 ms
169,868 KB
testcase_21 AC 219 ms
93,940 KB
testcase_22 AC 162 ms
86,656 KB
testcase_23 AC 698 ms
152,088 KB
testcase_24 AC 625 ms
150,316 KB
testcase_25 AC 442 ms
117,348 KB
testcase_26 AC 273 ms
98,868 KB
testcase_27 AC 596 ms
140,116 KB
testcase_28 AC 460 ms
124,424 KB
testcase_29 AC 139 ms
85,760 KB
testcase_30 AC 479 ms
129,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n=int(input())
d=defaultdict(int)
lis=[]
for _ in range(n):
    s=list(input())
    lis.append(s)
    for i in range(len(s)):
        tmp=s[:i]+['.']+s[i+1:]
        tmp=''.join(tmp)
        d[tmp]+=1
for s in lis:
    ans=0
    for i in range(len(s)):
        tmp=s[:i]+['.']+s[i+1:]
        tmp=''.join(tmp)
        ans+=d[tmp]-1
    print(ans)
0