結果

問題 No.1994 Confusing Name
ユーザー trineutrontrineutron
提出日時 2022-07-01 21:45:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 114,024 KB
最終ジャッジ日時 2024-05-04 16:06:28
合計ジャッジ時間 5,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 39 ms
53,376 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 68 ms
68,992 KB
testcase_06 AC 83 ms
76,544 KB
testcase_07 AC 58 ms
65,664 KB
testcase_08 AC 72 ms
71,680 KB
testcase_09 AC 90 ms
76,544 KB
testcase_10 AC 71 ms
70,272 KB
testcase_11 AC 74 ms
69,504 KB
testcase_12 AC 235 ms
108,524 KB
testcase_13 AC 273 ms
110,772 KB
testcase_14 AC 254 ms
111,028 KB
testcase_15 AC 229 ms
108,224 KB
testcase_16 AC 212 ms
106,980 KB
testcase_17 AC 222 ms
108,364 KB
testcase_18 AC 267 ms
110,896 KB
testcase_19 AC 272 ms
111,548 KB
testcase_20 AC 278 ms
114,024 KB
testcase_21 AC 125 ms
83,072 KB
testcase_22 AC 113 ms
77,952 KB
testcase_23 AC 255 ms
107,736 KB
testcase_24 AC 260 ms
108,016 KB
testcase_25 AC 189 ms
99,820 KB
testcase_26 AC 138 ms
83,748 KB
testcase_27 AC 232 ms
107,188 KB
testcase_28 AC 198 ms
97,076 KB
testcase_29 AC 106 ms
77,924 KB
testcase_30 AC 243 ms
99,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
s = [input() for i in range(n)]
ans = [0] * n
for i in range(10):
    d = defaultdict(int)
    for j in range(n):
        if len(s[j]) > i:
            d[s[j][:i] + s[j][i + 1:]] += 1
    for j in range(n):
        if len(s[j]) > i:
            ans[j] += d[s[j][:i] + s[j][i + 1:]] - 1
for i in range(n):
    print(ans[i])
0