結果

問題 No.1994 Confusing Name
ユーザー tassei903tassei903
提出日時 2022-07-01 22:35:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 138,240 KB
最終ジャッジ日時 2024-11-26 06:03:54
合計ジャッジ時間 9,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 44 ms
53,632 KB
testcase_04 AC 44 ms
53,888 KB
testcase_05 AC 65 ms
67,200 KB
testcase_06 AC 72 ms
71,168 KB
testcase_07 AC 56 ms
63,104 KB
testcase_08 AC 69 ms
69,888 KB
testcase_09 AC 72 ms
71,552 KB
testcase_10 AC 74 ms
71,680 KB
testcase_11 AC 64 ms
67,456 KB
testcase_12 AC 396 ms
117,248 KB
testcase_13 AC 509 ms
132,984 KB
testcase_14 AC 512 ms
138,240 KB
testcase_15 AC 448 ms
126,244 KB
testcase_16 AC 414 ms
117,120 KB
testcase_17 AC 435 ms
125,900 KB
testcase_18 AC 573 ms
136,144 KB
testcase_19 AC 559 ms
136,704 KB
testcase_20 AC 579 ms
135,780 KB
testcase_21 AC 157 ms
87,200 KB
testcase_22 AC 117 ms
80,768 KB
testcase_23 AC 551 ms
126,800 KB
testcase_24 AC 441 ms
121,700 KB
testcase_25 AC 309 ms
108,928 KB
testcase_26 AC 190 ms
92,800 KB
testcase_27 AC 413 ms
118,144 KB
testcase_28 AC 322 ms
111,232 KB
testcase_29 AC 107 ms
78,848 KB
testcase_30 AC 364 ms
111,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
s = [input() for i in range(n)]
from collections import defaultdict
d = [defaultdict(int) for j in range(10)]
f = defaultdict(int)
for i in range(n):
    z = len(s[i])
    y = list(s[i])
    for j in range(z):
        x = y.copy()
        x.pop(j)
        d[j]["".join(x)] += 1

for i in range(n):
    z = len(s[i])
    y = list(s[i])
    ans = 0
    for j in range(z):
        x = y.copy()
        x.pop(j)
        ans += d[j]["".join(x)]
    print(ans-len(s[i]))
0