結果

問題 No.1994 Confusing Name
ユーザー H20H20
提出日時 2022-07-01 21:58:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 151,124 KB
最終ジャッジ日時 2024-11-26 04:58:20
合計ジャッジ時間 7,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
63,488 KB
testcase_01 AC 57 ms
63,872 KB
testcase_02 AC 57 ms
63,616 KB
testcase_03 AC 57 ms
63,488 KB
testcase_04 AC 62 ms
63,488 KB
testcase_05 AC 81 ms
72,704 KB
testcase_06 AC 93 ms
78,080 KB
testcase_07 AC 69 ms
68,608 KB
testcase_08 AC 97 ms
77,952 KB
testcase_09 AC 96 ms
78,208 KB
testcase_10 AC 93 ms
77,824 KB
testcase_11 AC 80 ms
72,832 KB
testcase_12 AC 314 ms
124,416 KB
testcase_13 AC 377 ms
151,124 KB
testcase_14 AC 377 ms
144,256 KB
testcase_15 AC 329 ms
149,572 KB
testcase_16 AC 292 ms
144,980 KB
testcase_17 AC 336 ms
149,888 KB
testcase_18 AC 398 ms
147,892 KB
testcase_19 AC 396 ms
148,392 KB
testcase_20 AC 388 ms
148,172 KB
testcase_21 AC 146 ms
97,280 KB
testcase_22 AC 113 ms
83,712 KB
testcase_23 AC 338 ms
137,856 KB
testcase_24 AC 343 ms
137,216 KB
testcase_25 AC 241 ms
119,032 KB
testcase_26 AC 170 ms
105,344 KB
testcase_27 AC 320 ms
143,104 KB
testcase_28 AC 258 ms
127,956 KB
testcase_29 AC 112 ms
82,944 KB
testcase_30 AC 290 ms
139,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import string
import collections
N = int(input())
S = []
CA = collections.Counter()
for _ in range(N):
    S.append('a'+input()+'a')
for s in S:
    s = s
    for i in range(1,len(s)-1):
        CA[s[:i]+'*'+s[i+1:]]+=1
for s in S:
    ans = 0
    for i in range(1,len(s)-1):
        ans+=CA[s[:i]+'*'+s[i+1:]]
    print(ans-len(s)+2)
0