結果

問題 No.1994 Confusing Name
ユーザー ikomaikoma
提出日時 2022-07-01 22:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 150,492 KB
最終ジャッジ日時 2024-05-04 16:32:41
合計ジャッジ時間 6,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,304 KB
testcase_01 AC 35 ms
53,756 KB
testcase_02 AC 34 ms
54,004 KB
testcase_03 AC 39 ms
54,216 KB
testcase_04 AC 33 ms
53,780 KB
testcase_05 AC 50 ms
68,328 KB
testcase_06 AC 62 ms
74,444 KB
testcase_07 AC 43 ms
64,056 KB
testcase_08 AC 60 ms
73,024 KB
testcase_09 AC 64 ms
73,720 KB
testcase_10 AC 53 ms
70,108 KB
testcase_11 AC 52 ms
69,136 KB
testcase_12 AC 253 ms
118,876 KB
testcase_13 AC 303 ms
148,340 KB
testcase_14 AC 303 ms
149,876 KB
testcase_15 AC 281 ms
135,828 KB
testcase_16 AC 236 ms
141,440 KB
testcase_17 AC 257 ms
141,788 KB
testcase_18 AC 322 ms
150,172 KB
testcase_19 AC 343 ms
150,112 KB
testcase_20 AC 344 ms
150,492 KB
testcase_21 AC 106 ms
89,688 KB
testcase_22 AC 86 ms
85,400 KB
testcase_23 AC 304 ms
130,300 KB
testcase_24 AC 292 ms
132,580 KB
testcase_25 AC 198 ms
127,440 KB
testcase_26 AC 131 ms
101,756 KB
testcase_27 AC 276 ms
124,732 KB
testcase_28 AC 220 ms
134,952 KB
testcase_29 AC 84 ms
84,088 KB
testcase_30 AC 225 ms
135,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=[input().strip() for _ in range(N)]
from collections import defaultdict
cnt=defaultdict(int)

for s in S:
    for i in range(len(s)):
        a = s[0:i]+"*"+s[i+1:]
        cnt[a]+=1

for s in S:
    ans=0
    for i in range(len(s)):
        a = s[0:i]+"*"+s[i+1:]
        ans += cnt[a]-1
    print(ans)
0