結果

問題 No.1994 Confusing Name
ユーザー 👑 KazunKazun
提出日時 2022-07-01 21:31:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 141,432 KB
最終ジャッジ日時 2024-05-04 15:42:01
合計ジャッジ時間 8,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 62 ms
65,792 KB
testcase_06 AC 69 ms
71,296 KB
testcase_07 AC 51 ms
61,440 KB
testcase_08 AC 66 ms
68,864 KB
testcase_09 AC 71 ms
71,296 KB
testcase_10 AC 68 ms
68,096 KB
testcase_11 AC 58 ms
65,664 KB
testcase_12 AC 337 ms
117,604 KB
testcase_13 AC 402 ms
141,432 KB
testcase_14 AC 409 ms
138,336 KB
testcase_15 AC 355 ms
136,460 KB
testcase_16 AC 304 ms
135,900 KB
testcase_17 AC 352 ms
136,312 KB
testcase_18 AC 448 ms
139,084 KB
testcase_19 AC 453 ms
138,988 KB
testcase_20 AC 438 ms
139,168 KB
testcase_21 AC 138 ms
91,648 KB
testcase_22 AC 110 ms
84,436 KB
testcase_23 AC 390 ms
130,712 KB
testcase_24 AC 388 ms
129,776 KB
testcase_25 AC 267 ms
115,648 KB
testcase_26 AC 155 ms
92,800 KB
testcase_27 AC 353 ms
130,760 KB
testcase_28 AC 269 ms
123,372 KB
testcase_29 AC 97 ms
83,584 KB
testcase_30 AC 291 ms
129,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write

N=int(input())

S=[""]*N
E={}
for i in range(N):
    S[i]=input()[:-1]

    for j in range(len(S[i])):
        T=S[i][:j]+"*"+S[i][j+1:]
        E[T]=E.get(T,0)+1

Ans=[0]*N
for i in range(N):
    for j in range(len(S[i])):
        T=S[i][:j]+"*"+S[i][j+1:]
        Ans[i]+=E.get(T)-1

write("\n".join(map(str,Ans)))
0