結果

問題 No.1994 Confusing Name
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-29 13:42:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 936 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,168 KB
最終ジャッジ日時 2024-07-04 02:35:36
合計ジャッジ時間 13,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 34 ms
10,880 KB
testcase_06 AC 40 ms
11,136 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 37 ms
11,008 KB
testcase_09 AC 43 ms
11,264 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 35 ms
10,880 KB
testcase_12 AC 720 ms
32,680 KB
testcase_13 AC 887 ms
39,128 KB
testcase_14 AC 911 ms
39,436 KB
testcase_15 AC 735 ms
36,064 KB
testcase_16 AC 648 ms
33,936 KB
testcase_17 AC 716 ms
35,568 KB
testcase_18 AC 917 ms
40,096 KB
testcase_19 AC 919 ms
40,076 KB
testcase_20 AC 936 ms
40,168 KB
testcase_21 AC 191 ms
16,796 KB
testcase_22 AC 104 ms
13,648 KB
testcase_23 AC 793 ms
36,284 KB
testcase_24 AC 765 ms
35,032 KB
testcase_25 AC 484 ms
25,468 KB
testcase_26 AC 257 ms
18,180 KB
testcase_27 AC 712 ms
34,044 KB
testcase_28 AC 527 ms
33,860 KB
testcase_29 AC 92 ms
13,596 KB
testcase_30 AC 581 ms
33,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict as dfd
input = sys.stdin.readline

n = int(input())
d = dfd(int)
user = []
for _ in [0]*n:
	s = input().rstrip()
	user.append(s)
	for i in range(len(s)):
		t = ''.join([s[:i],'.',s[(i+1):]])
		d[t] += 1

for s in user:
	ans = 0
	for i in range(len(s)):
		t = ''.join([s[:i],'.',s[(i+1):]])
		ans += d[t] - 1
	print(ans)
0