結果

問題 No.1994 Confusing Name
ユーザー hir355hir355
提出日時 2022-07-01 21:33:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 155,916 KB
最終ジャッジ日時 2024-05-04 15:44:04
合計ジャッジ時間 7,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,064 KB
testcase_01 AC 36 ms
53,620 KB
testcase_02 AC 35 ms
54,096 KB
testcase_03 AC 37 ms
55,036 KB
testcase_04 AC 36 ms
54,596 KB
testcase_05 AC 55 ms
69,356 KB
testcase_06 AC 73 ms
77,324 KB
testcase_07 AC 46 ms
63,936 KB
testcase_08 AC 61 ms
73,660 KB
testcase_09 AC 71 ms
77,676 KB
testcase_10 AC 60 ms
70,496 KB
testcase_11 AC 62 ms
70,328 KB
testcase_12 AC 308 ms
120,640 KB
testcase_13 AC 367 ms
151,124 KB
testcase_14 AC 386 ms
154,016 KB
testcase_15 AC 323 ms
126,912 KB
testcase_16 AC 287 ms
129,544 KB
testcase_17 AC 311 ms
129,688 KB
testcase_18 AC 404 ms
155,712 KB
testcase_19 AC 410 ms
155,916 KB
testcase_20 AC 400 ms
155,780 KB
testcase_21 AC 133 ms
87,836 KB
testcase_22 AC 98 ms
77,696 KB
testcase_23 AC 371 ms
137,824 KB
testcase_24 AC 364 ms
133,660 KB
testcase_25 AC 257 ms
120,624 KB
testcase_26 AC 150 ms
92,388 KB
testcase_27 AC 314 ms
127,136 KB
testcase_28 AC 252 ms
121,628 KB
testcase_29 AC 96 ms
77,808 KB
testcase_30 AC 270 ms
127,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
s = [input() for _ in range(n)]
l = [Counter() for _ in range(10)]
for st in s:
    for i in range(len(st)):
        l[i][st[:i] + st[i + 1:]] += 1
for st in s:
    ans = 0
    for i in range(len(st)):
        ans += l[i][st[:i] + st[i + 1:]] - 1
    print(ans)
0