結果

問題 No.1994 Confusing Name
ユーザー FromBooskaFromBooska
提出日時 2023-08-03 11:36:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 430 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 142,052 KB
最終ジャッジ日時 2024-10-13 08:21:21
合計ジャッジ時間 8,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 67 ms
70,656 KB
testcase_06 AC 93 ms
77,824 KB
testcase_07 AC 53 ms
64,128 KB
testcase_08 AC 81 ms
77,312 KB
testcase_09 AC 85 ms
77,440 KB
testcase_10 AC 65 ms
71,936 KB
testcase_11 AC 66 ms
70,656 KB
testcase_12 AC 331 ms
121,944 KB
testcase_13 AC 373 ms
139,328 KB
testcase_14 AC 384 ms
140,200 KB
testcase_15 AC 348 ms
141,976 KB
testcase_16 AC 295 ms
125,756 KB
testcase_17 AC 309 ms
127,988 KB
testcase_18 AC 423 ms
141,772 KB
testcase_19 AC 424 ms
142,052 KB
testcase_20 AC 430 ms
142,032 KB
testcase_21 AC 147 ms
94,592 KB
testcase_22 AC 106 ms
82,636 KB
testcase_23 AC 383 ms
132,820 KB
testcase_24 AC 375 ms
128,608 KB
testcase_25 AC 259 ms
113,648 KB
testcase_26 AC 171 ms
102,644 KB
testcase_27 AC 345 ms
128,532 KB
testcase_28 AC 275 ms
114,224 KB
testcase_29 AC 108 ms
81,792 KB
testcase_30 AC 280 ms
116,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二重ループは不可能だがSの長さは小さい
# よってSを1文字ずつハテナ変形した文字列を作って数える
# 自身のダミーを数えないように注意

N = int(input())
from collections import defaultdict
dic = defaultdict(int)
S = []
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(temp, dic)

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