結果

問題 No.1994 Confusing Name
ユーザー kept1994kept1994
提出日時 2022-10-30 18:56:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 139,080 KB
最終ジャッジ日時 2024-07-07 10:59:40
合計ジャッジ時間 7,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,504 KB
testcase_01 AC 37 ms
53,504 KB
testcase_02 AC 34 ms
53,632 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 34 ms
53,632 KB
testcase_05 AC 58 ms
70,144 KB
testcase_06 AC 79 ms
77,056 KB
testcase_07 AC 46 ms
63,232 KB
testcase_08 AC 79 ms
76,928 KB
testcase_09 AC 74 ms
77,056 KB
testcase_10 AC 59 ms
71,168 KB
testcase_11 AC 59 ms
70,912 KB
testcase_12 AC 288 ms
117,408 KB
testcase_13 AC 320 ms
135,004 KB
testcase_14 AC 358 ms
139,080 KB
testcase_15 AC 300 ms
134,212 KB
testcase_16 AC 263 ms
125,924 KB
testcase_17 AC 279 ms
131,552 KB
testcase_18 AC 361 ms
136,972 KB
testcase_19 AC 380 ms
137,224 KB
testcase_20 AC 372 ms
137,436 KB
testcase_21 AC 129 ms
94,464 KB
testcase_22 AC 96 ms
82,372 KB
testcase_23 AC 338 ms
127,840 KB
testcase_24 AC 349 ms
126,704 KB
testcase_25 AC 244 ms
109,328 KB
testcase_26 AC 167 ms
102,272 KB
testcase_27 AC 315 ms
123,808 KB
testcase_28 AC 242 ms
116,284 KB
testcase_29 AC 93 ms
81,280 KB
testcase_30 AC 238 ms
116,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from collections import defaultdict
INF = 10 ** 16

def main():
    N = int(input())
    d = defaultdict(int)
    names = []
    for i in range(N):
        name = input()
        names.append(name)
        for i in range(len(name)):
            g = name[:i] + "*" + name[(i + 1):]
            d[g] += 1
    for name in names:
        ans = -len(name)
        for i in range(len(name)):
            g = name[:i] + "*" + name[(i + 1):]
            ans += d[g]
        print(ans)
    return


if __name__ == '__main__':
    main()
0