結果

問題 No.1994 Confusing Name
ユーザー ntudantuda
提出日時 2022-10-25 22:45:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 157,716 KB
最終ジャッジ日時 2024-07-03 18:55:09
合計ジャッジ時間 8,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,976 KB
testcase_01 AC 40 ms
53,544 KB
testcase_02 AC 40 ms
55,380 KB
testcase_03 AC 39 ms
53,724 KB
testcase_04 AC 40 ms
53,724 KB
testcase_05 AC 62 ms
69,324 KB
testcase_06 AC 84 ms
77,376 KB
testcase_07 AC 55 ms
64,524 KB
testcase_08 AC 72 ms
73,884 KB
testcase_09 AC 82 ms
77,580 KB
testcase_10 AC 64 ms
70,256 KB
testcase_11 AC 62 ms
70,272 KB
testcase_12 AC 303 ms
131,724 KB
testcase_13 AC 367 ms
148,484 KB
testcase_14 AC 389 ms
148,800 KB
testcase_15 AC 334 ms
157,716 KB
testcase_16 AC 295 ms
137,140 KB
testcase_17 AC 319 ms
147,560 KB
testcase_18 AC 395 ms
149,656 KB
testcase_19 AC 405 ms
149,416 KB
testcase_20 AC 412 ms
149,812 KB
testcase_21 AC 156 ms
96,452 KB
testcase_22 AC 110 ms
83,056 KB
testcase_23 AC 377 ms
141,128 KB
testcase_24 AC 366 ms
140,676 KB
testcase_25 AC 267 ms
111,940 KB
testcase_26 AC 176 ms
104,460 KB
testcase_27 AC 343 ms
140,320 KB
testcase_28 AC 278 ms
121,076 KB
testcase_29 AC 103 ms
82,432 KB
testcase_30 AC 280 ms
127,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
S = [input() for _ in range(N)]
dic = defaultdict(int)
for s in S:
    for i in range(len(s)):
        dic[s[:i] + "?" + s[i+1:]] += 1
ans = [0] * N
for j,s in enumerate(S):
    tmp = 0
    for i in range(len(s)):
        tmp +=  dic[s[:i] + "?" + s[i+1:]] - 1
    print(tmp)
0