結果

問題 No.1994 Confusing Name
ユーザー trineutrontrineutron
提出日時 2022-07-01 21:45:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 114,216 KB
最終ジャッジ日時 2024-11-26 04:35:36
合計ジャッジ時間 5,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 39 ms
53,248 KB
testcase_04 AC 37 ms
53,692 KB
testcase_05 AC 63 ms
68,992 KB
testcase_06 AC 76 ms
76,800 KB
testcase_07 AC 53 ms
65,920 KB
testcase_08 AC 68 ms
71,808 KB
testcase_09 AC 78 ms
76,576 KB
testcase_10 AC 66 ms
70,016 KB
testcase_11 AC 64 ms
69,632 KB
testcase_12 AC 232 ms
108,404 KB
testcase_13 AC 256 ms
110,896 KB
testcase_14 AC 252 ms
110,908 KB
testcase_15 AC 235 ms
108,012 KB
testcase_16 AC 209 ms
106,980 KB
testcase_17 AC 234 ms
108,292 KB
testcase_18 AC 281 ms
110,784 KB
testcase_19 AC 274 ms
111,320 KB
testcase_20 AC 271 ms
114,216 KB
testcase_21 AC 121 ms
83,100 KB
testcase_22 AC 106 ms
77,824 KB
testcase_23 AC 247 ms
107,656 KB
testcase_24 AC 243 ms
108,076 KB
testcase_25 AC 191 ms
99,432 KB
testcase_26 AC 143 ms
83,372 KB
testcase_27 AC 233 ms
107,188 KB
testcase_28 AC 193 ms
96,816 KB
testcase_29 AC 104 ms
77,584 KB
testcase_30 AC 199 ms
99,972 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