結果

問題 No.1994 Confusing Name
ユーザー FromBooskaFromBooska
提出日時 2024-03-21 18:15:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 142,284 KB
最終ジャッジ日時 2024-09-30 10:10:59
合計ジャッジ時間 7,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,736 KB
testcase_01 AC 37 ms
54,052 KB
testcase_02 AC 37 ms
54,292 KB
testcase_03 AC 38 ms
54,124 KB
testcase_04 AC 38 ms
54,252 KB
testcase_05 AC 61 ms
71,560 KB
testcase_06 AC 84 ms
77,484 KB
testcase_07 AC 53 ms
65,876 KB
testcase_08 AC 76 ms
77,472 KB
testcase_09 AC 77 ms
77,500 KB
testcase_10 AC 62 ms
73,844 KB
testcase_11 AC 63 ms
72,224 KB
testcase_12 AC 299 ms
121,908 KB
testcase_13 AC 341 ms
139,232 KB
testcase_14 AC 374 ms
140,372 KB
testcase_15 AC 319 ms
142,284 KB
testcase_16 AC 277 ms
125,808 KB
testcase_17 AC 295 ms
128,324 KB
testcase_18 AC 402 ms
141,736 KB
testcase_19 AC 396 ms
141,980 KB
testcase_20 AC 409 ms
142,116 KB
testcase_21 AC 141 ms
94,540 KB
testcase_22 AC 103 ms
82,484 KB
testcase_23 AC 349 ms
133,240 KB
testcase_24 AC 345 ms
128,472 KB
testcase_25 AC 246 ms
113,520 KB
testcase_26 AC 153 ms
102,664 KB
testcase_27 AC 318 ms
128,356 KB
testcase_28 AC 261 ms
114,404 KB
testcase_29 AC 99 ms
82,060 KB
testcase_30 AC 256 ms
116,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二重ループはできない、各Siの一字替えを辞書化

from collections import defaultdict

N = int(input())
S = []
dic = defaultdict(int)
for i in range(N):
    s = input()
    S.append(s)
    for j in range(len(s)):
        temp = s[:j]+'*'+s[j+1:]
        dic[temp] += 1
#print(S)
#print(dic)

for s in S:
    count = 0
    for j in range(len(s)):
        temp = s[:j]+'*'+s[j+1:]
        count += dic[temp]
    ans = count-len(s)
    print(ans)
0